3.9. MigrationΒΆ

Patterns of migration.

3.9.1. Persons Total TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_Total'
    );

Measure “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_Total'
    );

Measure “Persons Total Total” percent of “Total (Persons)” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_Total',
      'denominator'
    );

Measure “Persons Total Total” percent of “Total (Persons)” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total (Persons)
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1. Females Total TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_Total'
    );

Measure “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_Total'
    );

Measure “Females Total Total” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_Total',
      'denominator'
    );

Measure “Females Total Total” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

Subcolumns of Females Total Total

3.9.1.1.1. Females Language and proficiency in English not stated TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_Total'
    );

Measure “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_Total'
    );

Measure “Females Language and proficiency in English not stated Total” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_Total',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Total” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.2. Females Language and proficiency in English not stated Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_1996_2000'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_1996_2000'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 1996-2000” percent of “Females Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_1996_2000',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 1996-2000” percent of “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.3. Females Language and proficiency in English not stated Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2001_2005'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2001_2005'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2001-2005” percent of “Females Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2001_2005',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2001-2005” percent of “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.4. Females Language and proficiency in English not stated Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2006'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2006'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2006” percent of “Females Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2006',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2006” percent of “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.5. Females Language and proficiency in English not stated Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2007'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2007'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2007” percent of “Females Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2007',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2007” percent of “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.6. Females Language and proficiency in English not stated Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2008'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2008'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2008” percent of “Females Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2008',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2008” percent of “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.7. Females Language and proficiency in English not stated Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2009'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2009'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2009” percent of “Females Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2009',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2009” percent of “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.8. Females Language and proficiency in English not stated Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2010'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2010'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2010” percent of “Females Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2010',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2010” percent of “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.9. Females Language and proficiency in English not stated Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2011'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2011'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2011” percent of “Females Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_2011',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Year of arrival 2011” percent of “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.10. Females Language and proficiency in English not stated Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_bf1996'
    );

Measure “Females Language and proficiency in English not stated Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_bf1996'
    );

Measure “Females Language and proficiency in English not stated Year of arrival Before 1996” percent of “Females Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_bf1996',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Year of arrival Before 1996” percent of “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.11. Females Language and proficiency in English not stated Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Language and proficiency in English not stated Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_arrival_ns'
    );

Measure “Females Language and proficiency in English not stated Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_arrival_ns'
    );

Measure “Females Language and proficiency in English not stated Year of arrival not stated” percent of “Females Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_L_prof_Eng_ns_arrival_ns',
      'denominator'
    );

Measure “Females Language and proficiency in English not stated Year of arrival not stated” percent of “Females Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_L_prof_Eng_ns_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.12. Females Speaks English only TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_Tot'
    );

Measure “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_Tot'
    );

Measure “Females Speaks English only Total” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_Tot',
      'denominator'
    );

Measure “Females Speaks English only Total” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.13. Females Speaks English only Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_EO_1996_2000'
    );

Measure “Females Speaks English only Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_EO_1996_2000'
    );

Measure “Females Speaks English only Year of arrival 1996-2000” percent of “Females Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_EO_1996_2000',
      'denominator'
    );

Measure “Females Speaks English only Year of arrival 1996-2000” percent of “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_EO_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.14. Females Speaks English only Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_EO_2001_2005'
    );

Measure “Females Speaks English only Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_EO_2001_2005'
    );

Measure “Females Speaks English only Year of arrival 2001-2005” percent of “Females Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_EO_2001_2005',
      'denominator'
    );

Measure “Females Speaks English only Year of arrival 2001-2005” percent of “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_EO_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.15. Females Speaks English only Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2006'
    );

Measure “Females Speaks English only Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2006'
    );

Measure “Females Speaks English only Year of arrival 2006” percent of “Females Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2006',
      'denominator'
    );

Measure “Females Speaks English only Year of arrival 2006” percent of “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.16. Females Speaks English only Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2007'
    );

Measure “Females Speaks English only Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2007'
    );

Measure “Females Speaks English only Year of arrival 2007” percent of “Females Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2007',
      'denominator'
    );

Measure “Females Speaks English only Year of arrival 2007” percent of “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.17. Females Speaks English only Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2008'
    );

Measure “Females Speaks English only Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2008'
    );

Measure “Females Speaks English only Year of arrival 2008” percent of “Females Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2008',
      'denominator'
    );

Measure “Females Speaks English only Year of arrival 2008” percent of “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.18. Females Speaks English only Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2009'
    );

Measure “Females Speaks English only Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2009'
    );

Measure “Females Speaks English only Year of arrival 2009” percent of “Females Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2009',
      'denominator'
    );

Measure “Females Speaks English only Year of arrival 2009” percent of “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.19. Females Speaks English only Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2010'
    );

Measure “Females Speaks English only Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2010'
    );

Measure “Females Speaks English only Year of arrival 2010” percent of “Females Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2010',
      'denominator'
    );

Measure “Females Speaks English only Year of arrival 2010” percent of “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.20. Females Speaks English only Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2011'
    );

Measure “Females Speaks English only Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2011'
    );

Measure “Females Speaks English only Year of arrival 2011” percent of “Females Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_E_2011',
      'denominator'
    );

Measure “Females Speaks English only Year of arrival 2011” percent of “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_E_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.21. Females Speaks English only Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_EO_bf1996'
    );

Measure “Females Speaks English only Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_EO_bf1996'
    );

Measure “Females Speaks English only Year of arrival Before 1996” percent of “Females Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_EO_bf1996',
      'denominator'
    );

Measure “Females Speaks English only Year of arrival Before 1996” percent of “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_EO_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.22. Females Speaks English only Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks English only Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_EO_arrival_ns'
    );

Measure “Females Speaks English only Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_EO_arrival_ns'
    );

Measure “Females Speaks English only Year of arrival not stated” percent of “Females Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_EO_arrival_ns',
      'denominator'
    );

Measure “Females Speaks English only Year of arrival not stated” percent of “Females Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_EO_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.23. Females Speaks other language and speaks English Not well or not at all TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_Total'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_Total'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Total” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_Total',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Total” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.24. Females Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_1996_2000'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_1996_2000'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” percent of “Females Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_1996_2000',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” percent of “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.25. Females Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2001_2005'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2001_2005'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” percent of “Females Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2001_2005',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” percent of “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.26. Females Speaks other language and speaks English Not well or not at all Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2006'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2006'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2006” percent of “Females Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2006',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2006” percent of “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.27. Females Speaks other language and speaks English Not well or not at all Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2007'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2007'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2007” percent of “Females Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2007',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2007” percent of “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.28. Females Speaks other language and speaks English Not well or not at all Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2008'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2008'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2008” percent of “Females Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2008',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2008” percent of “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.29. Females Speaks other language and speaks English Not well or not at all Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2009'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2009'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2009” percent of “Females Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2009',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2009” percent of “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.30. Females Speaks other language and speaks English Not well or not at all Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2010'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2010'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2010” percent of “Females Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2010',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2010” percent of “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.31. Females Speaks other language and speaks English Not well or not at all Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2011'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2011'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2011” percent of “Females Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_2011',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival 2011” percent of “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.32. Females Speaks other language and speaks English Not well or not at all Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_bf1996'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_bf1996'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” percent of “Females Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_bf1996',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” percent of “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.33. Females Speaks other language and speaks English Not well or not at all Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_arrval_ns'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_arrval_ns'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival not stated” percent of “Females Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_NW_NA_arrval_ns',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Not well or not at all Year of arrival not stated” percent of “Females Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_NW_NA_arrval_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.34. Females Speaks other language and speaks English Proficiency in English not stated TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_arvl_Total'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_arvl_Total'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Total” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_arvl_Total',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Total” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_arvl_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.35. Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_1996_2000'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_1996_2000'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_1996_2000',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.36. Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2001_2005'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2001_2005'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2001_2005',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.37. Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2006'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2006'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2006',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.38. Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2007'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2007'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2007',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.39. Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2008'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2008'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2008',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.40. Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2009'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2009'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2009',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.41. Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2010'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2010'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2010',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.42. Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2011'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2011'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_2011',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.43. Females Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_bf1996'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_bf1996'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_bf1996',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.44. Females Speaks other language and speaks English Proficiency in English not stated Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_arrival_ns'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_arrival_ns'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_PE_ns_arrival_ns',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” percent of “Females Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_PE_ns_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.45. Females Speaks other language and speaks English Total TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_Total'
    );

Measure “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_Total'
    );

Measure “Females Speaks other language and speaks English Total Total” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_Total',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Total” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.46. Females Speaks other language and speaks English Total Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_1996_2000'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_1996_2000'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 1996-2000” percent of “Females Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_1996_2000',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 1996-2000” percent of “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.47. Females Speaks other language and speaks English Total Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2001_2005'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2001_2005'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2001-2005” percent of “Females Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2001_2005',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2001-2005” percent of “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.48. Females Speaks other language and speaks English Total Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2006'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2006'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2006” percent of “Females Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2006',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2006” percent of “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.49. Females Speaks other language and speaks English Total Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2007'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2007'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2007” percent of “Females Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2007',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2007” percent of “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.50. Females Speaks other language and speaks English Total Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2008'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2008'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2008” percent of “Females Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2008',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2008” percent of “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.51. Females Speaks other language and speaks English Total Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2009'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2009'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2009” percent of “Females Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2009',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2009” percent of “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.52. Females Speaks other language and speaks English Total Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2010'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2010'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2010” percent of “Females Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2010',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2010” percent of “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.53. Females Speaks other language and speaks English Total Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2011'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2011'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2011” percent of “Females Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_2011',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival 2011” percent of “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.54. Females Speaks other language and speaks English Total Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_bf1996'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_bf1996'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival Before 1996” percent of “Females Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_bf1996',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival Before 1996” percent of “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.55. Females Speaks other language and speaks English Total Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Total Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_arrival_ns'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_arrival_ns'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival not stated” percent of “Females Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_Tot_arrival_ns',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Total Year of arrival not stated” percent of “Females Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_Tot_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.56. Females Speaks other language and speaks English Very well or well TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_Y_a_Total'
    );

Measure “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_Y_a_Total'
    );

Measure “Females Speaks other language and speaks English Very well or well Total” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_Y_a_Total',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Total” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_Y_a_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.57. Females Speaks other language and speaks English Very well or well Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_1996_2000'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_1996_2000'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 1996-2000” percent of “Females Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_1996_2000',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 1996-2000” percent of “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.58. Females Speaks other language and speaks English Very well or well Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2001_2005'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2001_2005'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2001-2005” percent of “Females Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2001_2005',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2001-2005” percent of “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.59. Females Speaks other language and speaks English Very well or well Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2006'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2006'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2006” percent of “Females Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2006',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2006” percent of “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.60. Females Speaks other language and speaks English Very well or well Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2007'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2007'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2007” percent of “Females Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2007',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2007” percent of “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.61. Females Speaks other language and speaks English Very well or well Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2008'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2008'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2008” percent of “Females Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2008',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2008” percent of “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.62. Females Speaks other language and speaks English Very well or well Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2009'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2009'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2009” percent of “Females Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2009',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2009” percent of “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.63. Females Speaks other language and speaks English Very well or well Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2010'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2010'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2010” percent of “Females Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2010',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2010” percent of “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.64. Females Speaks other language and speaks English Very well or well Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2011'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2011'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2011” percent of “Females Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_2011',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival 2011” percent of “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.65. Females Speaks other language and speaks English Very well or well Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_V_wll_wll_Bf_1996'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_V_wll_wll_Bf_1996'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival Before 1996” percent of “Females Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_V_wll_wll_Bf_1996',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival Before 1996” percent of “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_V_wll_wll_Bf_1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.66. Females Speaks other language and speaks English Very well or well Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Speaks other language and speaks English Very well or well Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_Y_a_ns'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_Y_a_ns'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival not stated” percent of “Females Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_SOL_SE_VW_W_Y_a_ns',
      'denominator'
    );

Measure “Females Speaks other language and speaks English Very well or well Year of arrival not stated” percent of “Females Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_SOL_SE_VW_W_Y_a_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.67. Females Total Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_1996_2000'
    );

Measure “Females Total Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_1996_2000'
    );

Measure “Females Total Year of arrival 1996-2000” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_1996_2000',
      'denominator'
    );

Measure “Females Total Year of arrival 1996-2000” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.68. Females Total Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2001_2005'
    );

Measure “Females Total Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2001_2005'
    );

Measure “Females Total Year of arrival 2001-2005” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2001_2005',
      'denominator'
    );

Measure “Females Total Year of arrival 2001-2005” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.69. Females Total Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2006'
    );

Measure “Females Total Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2006'
    );

Measure “Females Total Year of arrival 2006” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2006',
      'denominator'
    );

Measure “Females Total Year of arrival 2006” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.70. Females Total Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2007'
    );

Measure “Females Total Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2007'
    );

Measure “Females Total Year of arrival 2007” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2007',
      'denominator'
    );

Measure “Females Total Year of arrival 2007” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.71. Females Total Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2008'
    );

Measure “Females Total Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2008'
    );

Measure “Females Total Year of arrival 2008” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2008',
      'denominator'
    );

Measure “Females Total Year of arrival 2008” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.72. Females Total Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2009'
    );

Measure “Females Total Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2009'
    );

Measure “Females Total Year of arrival 2009” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2009',
      'denominator'
    );

Measure “Females Total Year of arrival 2009” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.73. Females Total Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2010'
    );

Measure “Females Total Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2010'
    );

Measure “Females Total Year of arrival 2010” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2010',
      'denominator'
    );

Measure “Females Total Year of arrival 2010” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.74. Females Total Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2011'
    );

Measure “Females Total Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2011'
    );

Measure “Females Total Year of arrival 2011” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_2011',
      'denominator'
    );

Measure “Females Total Year of arrival 2011” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.75. Females Total Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_bf1996'
    );

Measure “Females Total Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_bf1996'
    );

Measure “Females Total Year of arrival Before 1996” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_bf1996',
      'denominator'
    );

Measure “Females Total Year of arrival Before 1996” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.1.76. Females Total Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Females Total Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_Yr_arrival_not_stated'
    );

Measure “Females Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_Yr_arrival_not_stated'
    );

Measure “Females Total Year of arrival not stated” percent of “Females Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_F_Tot_Yr_arrival_not_stated',
      'denominator'
    );

Measure “Females Total Year of arrival not stated” percent of “Females Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_F_Tot_Yr_arrival_not_stated',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Females Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2. Males Total TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_Total'
    );

Measure “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_Total'
    );

Measure “Males Total Total” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_Total',
      'denominator'
    );

Measure “Males Total Total” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

Subcolumns of Males Total Total

3.9.1.2.1. Males Language and proficiency in English not stated TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_Total'
    );

Measure “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_Total'
    );

Measure “Males Language and proficiency in English not stated Total” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_Total',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Total” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.2. Males Language and proficiency in English not stated Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_1996_2000'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_1996_2000'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 1996-2000” percent of “Males Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_1996_2000',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 1996-2000” percent of “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.3. Males Language and proficiency in English not stated Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2001_2005'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2001_2005'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2001-2005” percent of “Males Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2001_2005',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2001-2005” percent of “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.4. Males Language and proficiency in English not stated Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2006'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2006'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2006” percent of “Males Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2006',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2006” percent of “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.5. Males Language and proficiency in English not stated Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2007'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2007'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2007” percent of “Males Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2007',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2007” percent of “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.6. Males Language and proficiency in English not stated Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2008'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2008'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2008” percent of “Males Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2008',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2008” percent of “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.7. Males Language and proficiency in English not stated Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2009'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2009'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2009” percent of “Males Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2009',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2009” percent of “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.8. Males Language and proficiency in English not stated Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2010'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2010'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2010” percent of “Males Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2010',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2010” percent of “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.9. Males Language and proficiency in English not stated Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2011'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2011'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2011” percent of “Males Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_2011',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Year of arrival 2011” percent of “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.10. Males Language and proficiency in English not stated Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_bf1996'
    );

Measure “Males Language and proficiency in English not stated Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_bf1996'
    );

Measure “Males Language and proficiency in English not stated Year of arrival Before 1996” percent of “Males Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_bf1996',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Year of arrival Before 1996” percent of “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.11. Males Language and proficiency in English not stated Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Language and proficiency in English not stated Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_arrival_ns'
    );

Measure “Males Language and proficiency in English not stated Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_arrival_ns'
    );

Measure “Males Language and proficiency in English not stated Year of arrival not stated” percent of “Males Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_L_prof_Eng_ns_arrival_ns',
      'denominator'
    );

Measure “Males Language and proficiency in English not stated Year of arrival not stated” percent of “Males Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_L_prof_Eng_ns_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.12. Males Speaks English only TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_Tot'
    );

Measure “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_Tot'
    );

Measure “Males Speaks English only Total” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_Tot',
      'denominator'
    );

Measure “Males Speaks English only Total” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.13. Males Speaks English only Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_EO_1996_2000'
    );

Measure “Males Speaks English only Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_EO_1996_2000'
    );

Measure “Males Speaks English only Year of arrival 1996-2000” percent of “Males Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_EO_1996_2000',
      'denominator'
    );

Measure “Males Speaks English only Year of arrival 1996-2000” percent of “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_EO_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.14. Males Speaks English only Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_EO_2001_2005'
    );

Measure “Males Speaks English only Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_EO_2001_2005'
    );

Measure “Males Speaks English only Year of arrival 2001-2005” percent of “Males Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_EO_2001_2005',
      'denominator'
    );

Measure “Males Speaks English only Year of arrival 2001-2005” percent of “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_EO_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.15. Males Speaks English only Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2006'
    );

Measure “Males Speaks English only Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2006'
    );

Measure “Males Speaks English only Year of arrival 2006” percent of “Males Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2006',
      'denominator'
    );

Measure “Males Speaks English only Year of arrival 2006” percent of “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.16. Males Speaks English only Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2007'
    );

Measure “Males Speaks English only Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2007'
    );

Measure “Males Speaks English only Year of arrival 2007” percent of “Males Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2007',
      'denominator'
    );

Measure “Males Speaks English only Year of arrival 2007” percent of “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.17. Males Speaks English only Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2008'
    );

Measure “Males Speaks English only Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2008'
    );

Measure “Males Speaks English only Year of arrival 2008” percent of “Males Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2008',
      'denominator'
    );

Measure “Males Speaks English only Year of arrival 2008” percent of “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.18. Males Speaks English only Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2009'
    );

Measure “Males Speaks English only Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2009'
    );

Measure “Males Speaks English only Year of arrival 2009” percent of “Males Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2009',
      'denominator'
    );

Measure “Males Speaks English only Year of arrival 2009” percent of “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.19. Males Speaks English only Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2010'
    );

Measure “Males Speaks English only Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2010'
    );

Measure “Males Speaks English only Year of arrival 2010” percent of “Males Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2010',
      'denominator'
    );

Measure “Males Speaks English only Year of arrival 2010” percent of “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.20. Males Speaks English only Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2011'
    );

Measure “Males Speaks English only Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2011'
    );

Measure “Males Speaks English only Year of arrival 2011” percent of “Males Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_E_2011',
      'denominator'
    );

Measure “Males Speaks English only Year of arrival 2011” percent of “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_E_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.21. Males Speaks English only Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_EO_bf1996'
    );

Measure “Males Speaks English only Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_EO_bf1996'
    );

Measure “Males Speaks English only Year of arrival Before 1996” percent of “Males Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_EO_bf1996',
      'denominator'
    );

Measure “Males Speaks English only Year of arrival Before 1996” percent of “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_EO_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.22. Males Speaks English only Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks English only Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_EO_arrival_ns'
    );

Measure “Males Speaks English only Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_EO_arrival_ns'
    );

Measure “Males Speaks English only Year of arrival not stated” percent of “Males Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_EO_arrival_ns',
      'denominator'
    );

Measure “Males Speaks English only Year of arrival not stated” percent of “Males Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_EO_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.23. Males Speaks other language and speaks English Not well or not at all TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_Total'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_Total'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Total” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_Total',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Total” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.24. Males Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_1996_2000'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_1996_2000'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” percent of “Males Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_1996_2000',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” percent of “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.25. Males Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2001_2005'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2001_2005'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” percent of “Males Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2001_2005',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” percent of “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.26. Males Speaks other language and speaks English Not well or not at all Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2006'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2006'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2006” percent of “Males Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2006',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2006” percent of “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.27. Males Speaks other language and speaks English Not well or not at all Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2007'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2007'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2007” percent of “Males Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2007',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2007” percent of “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.28. Males Speaks other language and speaks English Not well or not at all Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2008'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2008'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2008” percent of “Males Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2008',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2008” percent of “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.29. Males Speaks other language and speaks English Not well or not at all Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2009'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2009'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2009” percent of “Males Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2009',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2009” percent of “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.30. Males Speaks other language and speaks English Not well or not at all Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2010'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2010'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2010” percent of “Males Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2010',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2010” percent of “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.31. Males Speaks other language and speaks English Not well or not at all Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2011'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2011'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2011” percent of “Males Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_2011',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival 2011” percent of “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.32. Males Speaks other language and speaks English Not well or not at all Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_bf1996'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_bf1996'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” percent of “Males Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_bf1996',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” percent of “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.33. Males Speaks other language and speaks English Not well or not at all Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_arrval_ns'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_arrval_ns'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival not stated” percent of “Males Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_NW_NA_arrval_ns',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Not well or not at all Year of arrival not stated” percent of “Males Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_NW_NA_arrval_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.34. Males Speaks other language and speaks English Proficiency in English not stated TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_arvl_Total'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_arvl_Total'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Total” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_arvl_Total',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Total” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_arvl_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.35. Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_1996_2000'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_1996_2000'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_1996_2000',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.36. Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2001_2005'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2001_2005'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2001_2005',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.37. Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2006'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2006'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2006',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.38. Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2007'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2007'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2007',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.39. Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2008'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2008'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2008',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.40. Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2009'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2009'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2009',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.41. Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2010'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2010'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2010',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.42. Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2011'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2011'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_2011',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.43. Males Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_bf1996'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_bf1996'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_bf1996',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.44. Males Speaks other language and speaks English Proficiency in English not stated Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_arrival_ns'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_arrival_ns'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_PE_ns_arrival_ns',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” percent of “Males Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_PE_ns_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.45. Males Speaks other language and speaks English Total TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_Total'
    );

Measure “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_Total'
    );

Measure “Males Speaks other language and speaks English Total Total” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_Total',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Total” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.46. Males Speaks other language and speaks English Total Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_1996_2000'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_1996_2000'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 1996-2000” percent of “Males Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_1996_2000',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 1996-2000” percent of “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.47. Males Speaks other language and speaks English Total Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2001_2005'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2001_2005'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2001-2005” percent of “Males Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2001_2005',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2001-2005” percent of “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.48. Males Speaks other language and speaks English Total Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2006'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2006'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2006” percent of “Males Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2006',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2006” percent of “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.49. Males Speaks other language and speaks English Total Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2007'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2007'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2007” percent of “Males Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2007',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2007” percent of “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.50. Males Speaks other language and speaks English Total Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2008'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2008'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2008” percent of “Males Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2008',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2008” percent of “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.51. Males Speaks other language and speaks English Total Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2009'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2009'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2009” percent of “Males Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2009',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2009” percent of “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.52. Males Speaks other language and speaks English Total Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2010'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2010'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2010” percent of “Males Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2010',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2010” percent of “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.53. Males Speaks other language and speaks English Total Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2011'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2011'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2011” percent of “Males Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_2011',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival 2011” percent of “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.54. Males Speaks other language and speaks English Total Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_bf1996'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_bf1996'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival Before 1996” percent of “Males Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_bf1996',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival Before 1996” percent of “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.55. Males Speaks other language and speaks English Total Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Total Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_arrival_ns'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_arrival_ns'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival not stated” percent of “Males Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_Tot_arrival_ns',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Total Year of arrival not stated” percent of “Males Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_Tot_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.56. Males Speaks other language and speaks English Very well or well TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_Y_a_Total'
    );

Measure “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_Y_a_Total'
    );

Measure “Males Speaks other language and speaks English Very well or well Total” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_Y_a_Total',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Total” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_Y_a_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.57. Males Speaks other language and speaks English Very well or well Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_1996_2000'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_1996_2000'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 1996-2000” percent of “Males Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_1996_2000',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 1996-2000” percent of “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.58. Males Speaks other language and speaks English Very well or well Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2001_2005'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2001_2005'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2001-2005” percent of “Males Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2001_2005',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2001-2005” percent of “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.59. Males Speaks other language and speaks English Very well or well Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2006'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2006'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2006” percent of “Males Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2006',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2006” percent of “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.60. Males Speaks other language and speaks English Very well or well Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2007'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2007'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2007” percent of “Males Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2007',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2007” percent of “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.61. Males Speaks other language and speaks English Very well or well Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2008'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2008'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2008” percent of “Males Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2008',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2008” percent of “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.62. Males Speaks other language and speaks English Very well or well Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2009'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2009'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2009” percent of “Males Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2009',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2009” percent of “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.63. Males Speaks other language and speaks English Very well or well Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2010'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2010'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2010” percent of “Males Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2010',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2010” percent of “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.64. Males Speaks other language and speaks English Very well or well Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2011'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2011'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2011” percent of “Males Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_2011',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival 2011” percent of “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.65. Males Speaks other language and speaks English Very well or well Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_V_wll_wll_Bf_1996'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_V_wll_wll_Bf_1996'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival Before 1996” percent of “Males Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_V_wll_wll_Bf_1996',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival Before 1996” percent of “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_V_wll_wll_Bf_1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.66. Males Speaks other language and speaks English Very well or well Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Speaks other language and speaks English Very well or well Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_Y_a_ns'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_Y_a_ns'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival not stated” percent of “Males Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_SOL_SE_VW_W_Y_a_ns',
      'denominator'
    );

Measure “Males Speaks other language and speaks English Very well or well Year of arrival not stated” percent of “Males Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_SOL_SE_VW_W_Y_a_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.67. Males Total Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_1996_2000'
    );

Measure “Males Total Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_1996_2000'
    );

Measure “Males Total Year of arrival 1996-2000” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_1996_2000',
      'denominator'
    );

Measure “Males Total Year of arrival 1996-2000” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.68. Males Total Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2001_2005'
    );

Measure “Males Total Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2001_2005'
    );

Measure “Males Total Year of arrival 2001-2005” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2001_2005',
      'denominator'
    );

Measure “Males Total Year of arrival 2001-2005” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.69. Males Total Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2006'
    );

Measure “Males Total Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2006'
    );

Measure “Males Total Year of arrival 2006” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2006',
      'denominator'
    );

Measure “Males Total Year of arrival 2006” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.70. Males Total Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2007'
    );

Measure “Males Total Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2007'
    );

Measure “Males Total Year of arrival 2007” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2007',
      'denominator'
    );

Measure “Males Total Year of arrival 2007” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.71. Males Total Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2008'
    );

Measure “Males Total Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2008'
    );

Measure “Males Total Year of arrival 2008” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2008',
      'denominator'
    );

Measure “Males Total Year of arrival 2008” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.72. Males Total Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2009'
    );

Measure “Males Total Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2009'
    );

Measure “Males Total Year of arrival 2009” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2009',
      'denominator'
    );

Measure “Males Total Year of arrival 2009” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.73. Males Total Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2010'
    );

Measure “Males Total Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2010'
    );

Measure “Males Total Year of arrival 2010” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2010',
      'denominator'
    );

Measure “Males Total Year of arrival 2010” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.74. Males Total Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2011'
    );

Measure “Males Total Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2011'
    );

Measure “Males Total Year of arrival 2011” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_2011',
      'denominator'
    );

Measure “Males Total Year of arrival 2011” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.75. Males Total Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_bf1996'
    );

Measure “Males Total Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_bf1996'
    );

Measure “Males Total Year of arrival Before 1996” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_bf1996',
      'denominator'
    );

Measure “Males Total Year of arrival Before 1996” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.2.76. Males Total Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Males Total Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_Yr_arrival_not_stated'
    );

Measure “Males Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_Yr_arrival_not_stated'
    );

Measure “Males Total Year of arrival not stated” percent of “Males Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_M_Tot_Yr_arrival_not_stated',
      'denominator'
    );

Measure “Males Total Year of arrival not stated” percent of “Males Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_M_Tot_Yr_arrival_not_stated',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Males Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3. Persons Language and proficiency in English not stated TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_Total'
    );

Measure “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_Total'
    );

Measure “Persons Language and proficiency in English not stated Total” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_Total',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Total” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3.1. Persons Language and proficiency in English not stated Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_1996_2000'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_1996_2000'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 1996-2000” percent of “Persons Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_1996_2000',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 1996-2000” percent of “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3.2. Persons Language and proficiency in English not stated Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2001_2005'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2001_2005'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2001-2005” percent of “Persons Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2001_2005',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2001-2005” percent of “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3.3. Persons Language and proficiency in English not stated Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2006'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2006'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2006” percent of “Persons Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2006',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2006” percent of “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3.4. Persons Language and proficiency in English not stated Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2007'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2007'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2007” percent of “Persons Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2007',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2007” percent of “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3.5. Persons Language and proficiency in English not stated Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2008'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2008'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2008” percent of “Persons Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2008',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2008” percent of “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3.6. Persons Language and proficiency in English not stated Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2009'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2009'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2009” percent of “Persons Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2009',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2009” percent of “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3.7. Persons Language and proficiency in English not stated Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2010'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2010'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2010” percent of “Persons Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2010',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2010” percent of “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3.8. Persons Language and proficiency in English not stated Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2011'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2011'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2011” percent of “Persons Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_2011',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival 2011” percent of “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3.9. Persons Language and proficiency in English not stated Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_bf1996'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_bf1996'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival Before 1996” percent of “Persons Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_bf1996',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival Before 1996” percent of “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.3.10. Persons Language and proficiency in English not stated Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Language and proficiency in English not stated Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_arrival_ns'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_arrival_ns'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival not stated” percent of “Persons Language and proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_L_prof_Eng_ns_arrival_ns',
      'denominator'
    );

Measure “Persons Language and proficiency in English not stated Year of arrival not stated” percent of “Persons Language and proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_L_prof_Eng_ns_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Language and proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4. Persons Speaks English only TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_Tot'
    );

Measure “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_Tot'
    );

Measure “Persons Speaks English only Total” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_Tot',
      'denominator'
    );

Measure “Persons Speaks English only Total” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4.1. Persons Speaks English only Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_1996_2000'
    );

Measure “Persons Speaks English only Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_1996_2000'
    );

Measure “Persons Speaks English only Year of arrival 1996-2000” percent of “Persons Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_1996_2000',
      'denominator'
    );

Measure “Persons Speaks English only Year of arrival 1996-2000” percent of “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4.2. Persons Speaks English only Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2001_2005'
    );

Measure “Persons Speaks English only Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2001_2005'
    );

Measure “Persons Speaks English only Year of arrival 2001-2005” percent of “Persons Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2001_2005',
      'denominator'
    );

Measure “Persons Speaks English only Year of arrival 2001-2005” percent of “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4.3. Persons Speaks English only Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2006'
    );

Measure “Persons Speaks English only Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2006'
    );

Measure “Persons Speaks English only Year of arrival 2006” percent of “Persons Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2006',
      'denominator'
    );

Measure “Persons Speaks English only Year of arrival 2006” percent of “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4.4. Persons Speaks English only Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2007'
    );

Measure “Persons Speaks English only Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2007'
    );

Measure “Persons Speaks English only Year of arrival 2007” percent of “Persons Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2007',
      'denominator'
    );

Measure “Persons Speaks English only Year of arrival 2007” percent of “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4.5. Persons Speaks English only Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2008'
    );

Measure “Persons Speaks English only Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2008'
    );

Measure “Persons Speaks English only Year of arrival 2008” percent of “Persons Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2008',
      'denominator'
    );

Measure “Persons Speaks English only Year of arrival 2008” percent of “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4.6. Persons Speaks English only Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2009'
    );

Measure “Persons Speaks English only Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2009'
    );

Measure “Persons Speaks English only Year of arrival 2009” percent of “Persons Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2009',
      'denominator'
    );

Measure “Persons Speaks English only Year of arrival 2009” percent of “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4.7. Persons Speaks English only Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2010'
    );

Measure “Persons Speaks English only Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2010'
    );

Measure “Persons Speaks English only Year of arrival 2010” percent of “Persons Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2010',
      'denominator'
    );

Measure “Persons Speaks English only Year of arrival 2010” percent of “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4.8. Persons Speaks English only Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2011'
    );

Measure “Persons Speaks English only Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2011'
    );

Measure “Persons Speaks English only Year of arrival 2011” percent of “Persons Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_2011',
      'denominator'
    );

Measure “Persons Speaks English only Year of arrival 2011” percent of “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4.9. Persons Speaks English only Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_bf1996'
    );

Measure “Persons Speaks English only Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_bf1996'
    );

Measure “Persons Speaks English only Year of arrival Before 1996” percent of “Persons Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_bf1996',
      'denominator'
    );

Measure “Persons Speaks English only Year of arrival Before 1996” percent of “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.4.10. Persons Speaks English only Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks English only Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_arrival_ns'
    );

Measure “Persons Speaks English only Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_arrival_ns'
    );

Measure “Persons Speaks English only Year of arrival not stated” percent of “Persons Speaks English only Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_EO_arrival_ns',
      'denominator'
    );

Measure “Persons Speaks English only Year of arrival not stated” percent of “Persons Speaks English only Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_EO_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks English only Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5. Persons Speaks other language and speaks English Not well or not at all TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_Total'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_Total'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Total” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_Total',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Total” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5.1. Persons Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_1996_2000'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_1996_2000'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” percent of “Persons Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_1996_2000',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 1996-2000” percent of “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5.2. Persons Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2001_2005'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2001_2005'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” percent of “Persons Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2001_2005',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2001-2005” percent of “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5.3. Persons Speaks other language and speaks English Not well or not at all Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2006'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2006'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2006” percent of “Persons Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2006',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2006” percent of “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5.4. Persons Speaks other language and speaks English Not well or not at all Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2007'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2007'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2007” percent of “Persons Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2007',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2007” percent of “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5.5. Persons Speaks other language and speaks English Not well or not at all Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2008'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2008'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2008” percent of “Persons Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2008',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2008” percent of “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5.6. Persons Speaks other language and speaks English Not well or not at all Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2009'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2009'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2009” percent of “Persons Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2009',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2009” percent of “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5.7. Persons Speaks other language and speaks English Not well or not at all Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2010'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2010'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2010” percent of “Persons Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2010',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2010” percent of “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5.8. Persons Speaks other language and speaks English Not well or not at all Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2011'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2011'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2011” percent of “Persons Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_2011',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival 2011” percent of “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5.9. Persons Speaks other language and speaks English Not well or not at all Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_bf1996'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_bf1996'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” percent of “Persons Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_bf1996',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival Before 1996” percent of “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.5.10. Persons Speaks other language and speaks English Not well or not at all Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_arrval_ns'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_arrval_ns'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival not stated” percent of “Persons Speaks other language and speaks English Not well or not at all Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_NW_NA_arrval_ns',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Not well or not at all Year of arrival not stated” percent of “Persons Speaks other language and speaks English Not well or not at all Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_NW_NA_arrval_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Not well or not at all Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6. Persons Speaks other language and speaks English Proficiency in English not stated TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_arvl_Total'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_arvl_Total'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Total” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_arvl_Total',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Total” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_arvl_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6.1. Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_1996_2000'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_1996_2000'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_1996_2000',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 1996-2000” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6.2. Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2001_2005'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2001_2005'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2001_2005',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2001-2005” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6.3. Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2006'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2006'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2006',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2006” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6.4. Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2007'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2007'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2007',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2007” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6.5. Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2008'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2008'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2008',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2008” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6.6. Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2009'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2009'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2009',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2009” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6.7. Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2010'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2010'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2010',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2010” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6.8. Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2011'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2011'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_2011',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival 2011” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6.9. Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_bf1996'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_bf1996'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_bf1996',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival Before 1996” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.6.10. Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_arrival_ns'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_arrival_ns'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_PE_ns_arrival_ns',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Proficiency in English not stated Year of arrival not stated” percent of “Persons Speaks other language and speaks English Proficiency in English not stated Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_PE_ns_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Proficiency in English not stated Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7. Persons Speaks other language and speaks English Total TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_Total'
    );

Measure “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_Total'
    );

Measure “Persons Speaks other language and speaks English Total Total” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_Total',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Total” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7.1. Persons Speaks other language and speaks English Total Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_Tot_1996_2000'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_Tot_1996_2000'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 1996-2000” percent of “Persons Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_Tot_1996_2000',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 1996-2000” percent of “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_Tot_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7.2. Persons Speaks other language and speaks English Total Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2001_2005'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2001_2005'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2001-2005” percent of “Persons Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2001_2005',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2001-2005” percent of “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7.3. Persons Speaks other language and speaks English Total Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2006'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2006'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2006” percent of “Persons Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2006',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2006” percent of “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7.4. Persons Speaks other language and speaks English Total Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2007'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2007'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2007” percent of “Persons Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2007',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2007” percent of “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7.5. Persons Speaks other language and speaks English Total Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2008'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2008'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2008” percent of “Persons Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2008',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2008” percent of “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7.6. Persons Speaks other language and speaks English Total Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2009'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2009'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2009” percent of “Persons Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2009',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2009” percent of “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7.7. Persons Speaks other language and speaks English Total Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2010'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2010'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2010” percent of “Persons Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2010',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2010” percent of “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7.8. Persons Speaks other language and speaks English Total Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2011'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2011'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2011” percent of “Persons Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_2011',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival 2011” percent of “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7.9. Persons Speaks other language and speaks English Total Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_Tot_bf1996'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_Tot_bf1996'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival Before 1996” percent of “Persons Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_Tot_bf1996',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival Before 1996” percent of “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_Tot_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.7.10. Persons Speaks other language and speaks English Total Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Total Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_arrival_ns'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_arrival_ns'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival not stated” percent of “Persons Speaks other language and speaks English Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_SOL_SE_Tot_arrival_ns',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Total Year of arrival not stated” percent of “Persons Speaks other language and speaks English Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_SOL_SE_Tot_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8. Persons Speaks other language and speaks English Very well or well TotalΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_Y_a_Total'
    );

Measure “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_Y_a_Total'
    );

Measure “Persons Speaks other language and speaks English Very well or well Total” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_Y_a_Total',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Total” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_Y_a_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8.1. Persons Speaks other language and speaks English Very well or well Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_1996_2000'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_1996_2000'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 1996-2000” percent of “Persons Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_1996_2000',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 1996-2000” percent of “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8.2. Persons Speaks other language and speaks English Very well or well Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2001_2005'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2001_2005'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2001-2005” percent of “Persons Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2001_2005',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2001-2005” percent of “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8.3. Persons Speaks other language and speaks English Very well or well Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2006'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2006'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2006” percent of “Persons Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2006',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2006” percent of “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8.4. Persons Speaks other language and speaks English Very well or well Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2007'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2007'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2007” percent of “Persons Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2007',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2007” percent of “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8.5. Persons Speaks other language and speaks English Very well or well Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2008'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2008'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2008” percent of “Persons Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2008',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2008” percent of “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8.6. Persons Speaks other language and speaks English Very well or well Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2009'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2009'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2009” percent of “Persons Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2009',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2009” percent of “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8.7. Persons Speaks other language and speaks English Very well or well Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2010'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2010'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2010” percent of “Persons Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2010',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2010” percent of “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8.8. Persons Speaks other language and speaks English Very well or well Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2011'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2011'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2011” percent of “Persons Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_2011',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival 2011” percent of “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8.9. Persons Speaks other language and speaks English Very well or well Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_V_wll_wll_Bf_1996'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_V_wll_wll_Bf_1996'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival Before 1996” percent of “Persons Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_V_wll_wll_Bf_1996',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival Before 1996” percent of “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_V_wll_wll_Bf_1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.8.10. Persons Speaks other language and speaks English Very well or well Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_Y_a_ns'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_Y_a_ns'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival not stated” percent of “Persons Speaks other language and speaks English Very well or well Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11A_P_SOL_SE_VW_W_Y_a_ns',
      'denominator'
    );

Measure “Persons Speaks other language and speaks English Very well or well Year of arrival not stated” percent of “Persons Speaks other language and speaks English Very well or well Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11A_P_SOL_SE_VW_W_Y_a_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Speaks other language and speaks English Very well or well Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.9. Persons Total Year of arrival 1996-2000ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Year of arrival 1996-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_1996_2000'
    );

Measure “Persons Total Year of arrival 1996-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_1996_2000'
    );

Measure “Persons Total Year of arrival 1996-2000” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_1996_2000',
      'denominator'
    );

Measure “Persons Total Year of arrival 1996-2000” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_1996_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.10. Persons Total Year of arrival 2001-2005ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2001_2005'
    );

Measure “Persons Total Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2001_2005'
    );

Measure “Persons Total Year of arrival 2001-2005” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2001_2005',
      'denominator'
    );

Measure “Persons Total Year of arrival 2001-2005” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.11. Persons Total Year of arrival 2006ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2006'
    );

Measure “Persons Total Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2006'
    );

Measure “Persons Total Year of arrival 2006” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2006',
      'denominator'
    );

Measure “Persons Total Year of arrival 2006” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.12. Persons Total Year of arrival 2007ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2007'
    );

Measure “Persons Total Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2007'
    );

Measure “Persons Total Year of arrival 2007” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2007',
      'denominator'
    );

Measure “Persons Total Year of arrival 2007” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.13. Persons Total Year of arrival 2008ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2008'
    );

Measure “Persons Total Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2008'
    );

Measure “Persons Total Year of arrival 2008” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2008',
      'denominator'
    );

Measure “Persons Total Year of arrival 2008” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.14. Persons Total Year of arrival 2009ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2009'
    );

Measure “Persons Total Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2009'
    );

Measure “Persons Total Year of arrival 2009” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2009',
      'denominator'
    );

Measure “Persons Total Year of arrival 2009” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.15. Persons Total Year of arrival 2010ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2010'
    );

Measure “Persons Total Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2010'
    );

Measure “Persons Total Year of arrival 2010” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2010',
      'denominator'
    );

Measure “Persons Total Year of arrival 2010” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.16. Persons Total Year of arrival 2011ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2011'
    );

Measure “Persons Total Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2011'
    );

Measure “Persons Total Year of arrival 2011” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_2011',
      'denominator'
    );

Measure “Persons Total Year of arrival 2011” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.17. Persons Total Year of arrival Before 1996ΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Year of arrival Before 1996” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_bf1996'
    );

Measure “Persons Total Year of arrival Before 1996” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_bf1996'
    );

Measure “Persons Total Year of arrival Before 1996” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_bf1996',
      'denominator'
    );

Measure “Persons Total Year of arrival Before 1996” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_bf1996',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.1.18. Persons Total Year of arrival not statedΒΆ

Proficiency in Spoken English/Language by Year of Arrival in Australia

Measure “Persons Total Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_Yr_arrival_not_stated'
    );

Measure “Persons Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_Yr_arrival_not_stated'
    );

Measure “Persons Total Year of arrival not stated” percent of “Persons Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B11B_P_Tot_Yr_arrival_not_stated',
      'denominator'
    );

Measure “Persons Total Year of arrival not stated” percent of “Persons Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B11B_P_Tot_Yr_arrival_not_stated',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Persons Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2. Total Persons Total ResponsesΒΆ

Ancestry

Measure “Total Persons Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08B_Tot_P_Tot_Resp'
    );

Measure “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08B_Tot_P_Tot_Resp'
    );

Measure “Total Persons Total Responses” percent of “Total (Persons)” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08B_Tot_P_Tot_Resp',
      'denominator'
    );

Measure “Total Persons Total Responses” percent of “Total (Persons)” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08B_Tot_P_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total (Persons)
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.1. Ancestry not stated Total ResponsesΒΆ

Ancestry

Measure “Ancestry not stated Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Tot_Resp'
    );

Measure “Ancestry not stated Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Tot_Resp'
    );

Measure “Ancestry not stated Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Tot_Resp',
      'denominator'
    );

Measure “Ancestry not stated Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.1.1. Ancestry not stated Birthplace not statedΒΆ

Ancestry

Measure “Ancestry not stated Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Country_birth_ns'
    );

Measure “Ancestry not stated Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Country_birth_ns'
    );

Measure “Ancestry not stated Birthplace not stated” percent of “Ancestry not stated Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Country_birth_ns',
      'denominator'
    );

Measure “Ancestry not stated Birthplace not stated” percent of “Ancestry not stated Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Country_birth_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ancestry not stated Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.1.2. Ancestry not stated Both parents born in AustraliaΒΆ

Ancestry

Measure “Ancestry not stated Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Bth_prnts_brn_Aus'
    );

Measure “Ancestry not stated Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Bth_prnts_brn_Aus'
    );

Measure “Ancestry not stated Both parents born in Australia” percent of “Ancestry not stated Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Bth_prnts_brn_Aus',
      'denominator'
    );

Measure “Ancestry not stated Both parents born in Australia” percent of “Ancestry not stated Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Bth_prnts_brn_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ancestry not stated Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.1.3. Ancestry not stated Both parents born overseasΒΆ

Ancestry

Measure “Ancestry not stated Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Both_prnts_brn_os'
    );

Measure “Ancestry not stated Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Both_prnts_brn_os'
    );

Measure “Ancestry not stated Both parents born overseas” percent of “Ancestry not stated Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Both_prnts_brn_os',
      'denominator'
    );

Measure “Ancestry not stated Both parents born overseas” percent of “Ancestry not stated Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Both_prnts_brn_os',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ancestry not stated Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.1.4. Ancestry not stated Father only born overseasΒΆ

Ancestry

Measure “Ancestry not stated Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Fthr_only_brn_os'
    );

Measure “Ancestry not stated Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Fthr_only_brn_os'
    );

Measure “Ancestry not stated Father only born overseas” percent of “Ancestry not stated Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Fthr_only_brn_os',
      'denominator'
    );

Measure “Ancestry not stated Father only born overseas” percent of “Ancestry not stated Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Fthr_only_brn_os',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ancestry not stated Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.1.5. Ancestry not stated Mother only born overseasΒΆ

Ancestry

Measure “Ancestry not stated Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Mthr_only_brn_os'
    );

Measure “Ancestry not stated Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Mthr_only_brn_os'
    );

Measure “Ancestry not stated Mother only born overseas” percent of “Ancestry not stated Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Ancestry_ns_Mthr_only_brn_os',
      'denominator'
    );

Measure “Ancestry not stated Mother only born overseas” percent of “Ancestry not stated Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Ancestry_ns_Mthr_only_brn_os',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ancestry not stated Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.2. Australian Aboriginal Total ResponsesΒΆ

Ancestry

Measure “Australian Aboriginal Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_Tot_Resp'
    );

Measure “Australian Aboriginal Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_Tot_Resp'
    );

Measure “Australian Aboriginal Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_Tot_Resp',
      'denominator'
    );

Measure “Australian Aboriginal Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.2.1. Australian Aboriginal Birthplace not statedΒΆ

Ancestry

Measure “Australian Aboriginal Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_BP_NS'
    );

Measure “Australian Aboriginal Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_BP_NS'
    );

Measure “Australian Aboriginal Birthplace not stated” percent of “Australian Aboriginal Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_BP_NS',
      'denominator'
    );

Measure “Australian Aboriginal Birthplace not stated” percent of “Australian Aboriginal Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Australian Aboriginal Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.2.2. Australian Aboriginal Both parents born in AustraliaΒΆ

Ancestry

Measure “Australian Aboriginal Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_BP_B_Aus'
    );

Measure “Australian Aboriginal Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_BP_B_Aus'
    );

Measure “Australian Aboriginal Both parents born in Australia” percent of “Australian Aboriginal Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_BP_B_Aus',
      'denominator'
    );

Measure “Australian Aboriginal Both parents born in Australia” percent of “Australian Aboriginal Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Australian Aboriginal Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.2.3. Australian Aboriginal Both parents born overseasΒΆ

Ancestry

Measure “Australian Aboriginal Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_BP_B_OS'
    );

Measure “Australian Aboriginal Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_BP_B_OS'
    );

Measure “Australian Aboriginal Both parents born overseas” percent of “Australian Aboriginal Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_BP_B_OS',
      'denominator'
    );

Measure “Australian Aboriginal Both parents born overseas” percent of “Australian Aboriginal Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Australian Aboriginal Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.2.4. Australian Aboriginal Father only born overseasΒΆ

Ancestry

Measure “Australian Aboriginal Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_FO_B_OS'
    );

Measure “Australian Aboriginal Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_FO_B_OS'
    );

Measure “Australian Aboriginal Father only born overseas” percent of “Australian Aboriginal Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_FO_B_OS',
      'denominator'
    );

Measure “Australian Aboriginal Father only born overseas” percent of “Australian Aboriginal Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Australian Aboriginal Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.2.5. Australian Aboriginal Mother only born overseasΒΆ

Ancestry

Measure “Australian Aboriginal Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_MO_B_OS'
    );

Measure “Australian Aboriginal Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_MO_B_OS'
    );

Measure “Australian Aboriginal Mother only born overseas” percent of “Australian Aboriginal Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Abor_MO_B_OS',
      'denominator'
    );

Measure “Australian Aboriginal Mother only born overseas” percent of “Australian Aboriginal Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Abor_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Australian Aboriginal Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.3. Australian Total ResponsesΒΆ

Ancestry

Measure “Australian Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Tot_Resp'
    );

Measure “Australian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Tot_Resp'
    );

Measure “Australian Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Tot_Resp',
      'denominator'
    );

Measure “Australian Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.3.1. Australian Birthplace not statedΒΆ

Ancestry

Measure “Australian Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Birthplace_not_stated'
    );

Measure “Australian Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Birthplace_not_stated'
    );

Measure “Australian Birthplace not stated” percent of “Australian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Birthplace_not_stated',
      'denominator'
    );

Measure “Australian Birthplace not stated” percent of “Australian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Birthplace_not_stated',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Australian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.3.2. Australian Both parents born in AustraliaΒΆ

Ancestry

Measure “Australian Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Both_parents_born_Aust'
    );

Measure “Australian Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Both_parents_born_Aust'
    );

Measure “Australian Both parents born in Australia” percent of “Australian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_Both_parents_born_Aust',
      'denominator'
    );

Measure “Australian Both parents born in Australia” percent of “Australian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_Both_parents_born_Aust',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Australian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.3.3. Australian Both parents born overseasΒΆ

Ancestry

Measure “Australian Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_BP_B_OS'
    );

Measure “Australian Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_BP_B_OS'
    );

Measure “Australian Both parents born overseas” percent of “Australian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_BP_B_OS',
      'denominator'
    );

Measure “Australian Both parents born overseas” percent of “Australian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Australian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.3.4. Australian Father only born overseasΒΆ

Ancestry

Measure “Australian Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_FO_B_OS'
    );

Measure “Australian Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_FO_B_OS'
    );

Measure “Australian Father only born overseas” percent of “Australian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_FO_B_OS',
      'denominator'
    );

Measure “Australian Father only born overseas” percent of “Australian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Australian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.3.5. Australian Mother only born overseasΒΆ

Ancestry

Measure “Australian Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_MO_B_OS'
    );

Measure “Australian Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_MO_B_OS'
    );

Measure “Australian Mother only born overseas” percent of “Australian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Aust_MO_B_OS',
      'denominator'
    );

Measure “Australian Mother only born overseas” percent of “Australian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Aust_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Australian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.4. Chinese Total ResponsesΒΆ

Ancestry

Measure “Chinese Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_Tot_Resp'
    );

Measure “Chinese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_Tot_Resp'
    );

Measure “Chinese Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_Tot_Resp',
      'denominator'
    );

Measure “Chinese Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.4.1. Chinese Birthplace not statedΒΆ

Ancestry

Measure “Chinese Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_BP_NS'
    );

Measure “Chinese Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_BP_NS'
    );

Measure “Chinese Birthplace not stated” percent of “Chinese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_BP_NS',
      'denominator'
    );

Measure “Chinese Birthplace not stated” percent of “Chinese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Chinese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.4.2. Chinese Both parents born in AustraliaΒΆ

Ancestry

Measure “Chinese Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_BP_B_Aus'
    );

Measure “Chinese Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_BP_B_Aus'
    );

Measure “Chinese Both parents born in Australia” percent of “Chinese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_BP_B_Aus',
      'denominator'
    );

Measure “Chinese Both parents born in Australia” percent of “Chinese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Chinese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.4.3. Chinese Both parents born overseasΒΆ

Ancestry

Measure “Chinese Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_BP_B_OS'
    );

Measure “Chinese Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_BP_B_OS'
    );

Measure “Chinese Both parents born overseas” percent of “Chinese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_BP_B_OS',
      'denominator'
    );

Measure “Chinese Both parents born overseas” percent of “Chinese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Chinese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.4.4. Chinese Father only born overseasΒΆ

Ancestry

Measure “Chinese Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_FO_B_OS'
    );

Measure “Chinese Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_FO_B_OS'
    );

Measure “Chinese Father only born overseas” percent of “Chinese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_FO_B_OS',
      'denominator'
    );

Measure “Chinese Father only born overseas” percent of “Chinese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Chinese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.4.5. Chinese Mother only born overseasΒΆ

Ancestry

Measure “Chinese Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_MO_B_OS'
    );

Measure “Chinese Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_MO_B_OS'
    );

Measure “Chinese Mother only born overseas” percent of “Chinese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Chinese_MO_B_OS',
      'denominator'
    );

Measure “Chinese Mother only born overseas” percent of “Chinese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Chinese_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Chinese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.5. Croatian Total ResponsesΒΆ

Ancestry

Measure “Croatian Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_Tot_Resp'
    );

Measure “Croatian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_Tot_Resp'
    );

Measure “Croatian Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_Tot_Resp',
      'denominator'
    );

Measure “Croatian Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.5.1. Croatian Birthplace not statedΒΆ

Ancestry

Measure “Croatian Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_BP_NS'
    );

Measure “Croatian Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_BP_NS'
    );

Measure “Croatian Birthplace not stated” percent of “Croatian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_BP_NS',
      'denominator'
    );

Measure “Croatian Birthplace not stated” percent of “Croatian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.5.2. Croatian Both parents born in AustraliaΒΆ

Ancestry

Measure “Croatian Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_BP_B_Aus'
    );

Measure “Croatian Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_BP_B_Aus'
    );

Measure “Croatian Both parents born in Australia” percent of “Croatian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_BP_B_Aus',
      'denominator'
    );

Measure “Croatian Both parents born in Australia” percent of “Croatian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.5.3. Croatian Both parents born overseasΒΆ

Ancestry

Measure “Croatian Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_BP_B_OS'
    );

Measure “Croatian Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_BP_B_OS'
    );

Measure “Croatian Both parents born overseas” percent of “Croatian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_BP_B_OS',
      'denominator'
    );

Measure “Croatian Both parents born overseas” percent of “Croatian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.5.4. Croatian Father only born overseasΒΆ

Ancestry

Measure “Croatian Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_FO_B_OS'
    );

Measure “Croatian Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_FO_B_OS'
    );

Measure “Croatian Father only born overseas” percent of “Croatian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_FO_B_OS',
      'denominator'
    );

Measure “Croatian Father only born overseas” percent of “Croatian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.5.5. Croatian Mother only born overseasΒΆ

Ancestry

Measure “Croatian Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_MO_B_OS'
    );

Measure “Croatian Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_MO_B_OS'
    );

Measure “Croatian Mother only born overseas” percent of “Croatian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Croatian_MO_B_OS',
      'denominator'
    );

Measure “Croatian Mother only born overseas” percent of “Croatian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Croatian_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.6. Dutch Total ResponsesΒΆ

Ancestry

Measure “Dutch Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_Tot_Resp'
    );

Measure “Dutch Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_Tot_Resp'
    );

Measure “Dutch Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_Tot_Resp',
      'denominator'
    );

Measure “Dutch Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.6.1. Dutch Birthplace not statedΒΆ

Ancestry

Measure “Dutch Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_BP_NS'
    );

Measure “Dutch Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_BP_NS'
    );

Measure “Dutch Birthplace not stated” percent of “Dutch Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_BP_NS',
      'denominator'
    );

Measure “Dutch Birthplace not stated” percent of “Dutch Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Dutch Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.6.2. Dutch Both parents born in AustraliaΒΆ

Ancestry

Measure “Dutch Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_BP_B_Aus'
    );

Measure “Dutch Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_BP_B_Aus'
    );

Measure “Dutch Both parents born in Australia” percent of “Dutch Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_BP_B_Aus',
      'denominator'
    );

Measure “Dutch Both parents born in Australia” percent of “Dutch Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Dutch Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.6.3. Dutch Both parents born overseasΒΆ

Ancestry

Measure “Dutch Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_BP_B_OS'
    );

Measure “Dutch Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_BP_B_OS'
    );

Measure “Dutch Both parents born overseas” percent of “Dutch Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_BP_B_OS',
      'denominator'
    );

Measure “Dutch Both parents born overseas” percent of “Dutch Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Dutch Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.6.4. Dutch Father only born overseasΒΆ

Ancestry

Measure “Dutch Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_FO_B_OS'
    );

Measure “Dutch Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_FO_B_OS'
    );

Measure “Dutch Father only born overseas” percent of “Dutch Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_FO_B_OS',
      'denominator'
    );

Measure “Dutch Father only born overseas” percent of “Dutch Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Dutch Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.6.5. Dutch Mother only born overseasΒΆ

Ancestry

Measure “Dutch Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_MO_B_OS'
    );

Measure “Dutch Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_MO_B_OS'
    );

Measure “Dutch Mother only born overseas” percent of “Dutch Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Dutch_MO_B_OS',
      'denominator'
    );

Measure “Dutch Mother only born overseas” percent of “Dutch Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Dutch_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Dutch Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.7. English Total ResponsesΒΆ

Ancestry

Measure “English Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_Tot_Resp'
    );

Measure “English Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_Tot_Resp'
    );

Measure “English Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_Tot_Resp',
      'denominator'
    );

Measure “English Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.7.1. English Birthplace not statedΒΆ

Ancestry

Measure “English Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_BP_NS'
    );

Measure “English Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_BP_NS'
    );

Measure “English Birthplace not stated” percent of “English Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_BP_NS',
      'denominator'
    );

Measure “English Birthplace not stated” percent of “English Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:English Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.7.2. English Both parents born in AustraliaΒΆ

Ancestry

Measure “English Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_BP_B_Aus'
    );

Measure “English Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_BP_B_Aus'
    );

Measure “English Both parents born in Australia” percent of “English Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_BP_B_Aus',
      'denominator'
    );

Measure “English Both parents born in Australia” percent of “English Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:English Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.7.3. English Both parents born overseasΒΆ

Ancestry

Measure “English Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_BP_B_OS'
    );

Measure “English Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_BP_B_OS'
    );

Measure “English Both parents born overseas” percent of “English Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_BP_B_OS',
      'denominator'
    );

Measure “English Both parents born overseas” percent of “English Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:English Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.7.4. English Father only born overseasΒΆ

Ancestry

Measure “English Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_FO_B_OS'
    );

Measure “English Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_FO_B_OS'
    );

Measure “English Father only born overseas” percent of “English Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_FO_B_OS',
      'denominator'
    );

Measure “English Father only born overseas” percent of “English Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:English Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.7.5. English Mother only born overseasΒΆ

Ancestry

Measure “English Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_MO_B_OS'
    );

Measure “English Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_MO_B_OS'
    );

Measure “English Mother only born overseas” percent of “English Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_English_MO_B_OS',
      'denominator'
    );

Measure “English Mother only born overseas” percent of “English Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_English_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:English Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.8. Filipino Total ResponsesΒΆ

Ancestry

Measure “Filipino Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_Tot_Resp'
    );

Measure “Filipino Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_Tot_Resp'
    );

Measure “Filipino Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_Tot_Resp',
      'denominator'
    );

Measure “Filipino Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.8.1. Filipino Birthplace not statedΒΆ

Ancestry

Measure “Filipino Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_BP_NS'
    );

Measure “Filipino Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_BP_NS'
    );

Measure “Filipino Birthplace not stated” percent of “Filipino Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_BP_NS',
      'denominator'
    );

Measure “Filipino Birthplace not stated” percent of “Filipino Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Filipino Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.8.2. Filipino Both parents born in AustraliaΒΆ

Ancestry

Measure “Filipino Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_BP_B_Aus'
    );

Measure “Filipino Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_BP_B_Aus'
    );

Measure “Filipino Both parents born in Australia” percent of “Filipino Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_BP_B_Aus',
      'denominator'
    );

Measure “Filipino Both parents born in Australia” percent of “Filipino Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Filipino Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.8.3. Filipino Both parents born overseasΒΆ

Ancestry

Measure “Filipino Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_BP_B_OS'
    );

Measure “Filipino Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_BP_B_OS'
    );

Measure “Filipino Both parents born overseas” percent of “Filipino Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_BP_B_OS',
      'denominator'
    );

Measure “Filipino Both parents born overseas” percent of “Filipino Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Filipino Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.8.4. Filipino Father only born overseasΒΆ

Ancestry

Measure “Filipino Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_FO_B_OS'
    );

Measure “Filipino Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_FO_B_OS'
    );

Measure “Filipino Father only born overseas” percent of “Filipino Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_FO_B_OS',
      'denominator'
    );

Measure “Filipino Father only born overseas” percent of “Filipino Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Filipino Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.8.5. Filipino Mother only born overseasΒΆ

Ancestry

Measure “Filipino Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_MO_B_OS'
    );

Measure “Filipino Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_MO_B_OS'
    );

Measure “Filipino Mother only born overseas” percent of “Filipino Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Filipino_MO_B_OS',
      'denominator'
    );

Measure “Filipino Mother only born overseas” percent of “Filipino Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Filipino_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Filipino Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.9. French Total ResponsesΒΆ

Ancestry

Measure “French Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_Tot_Resp'
    );

Measure “French Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_Tot_Resp'
    );

Measure “French Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_Tot_Resp',
      'denominator'
    );

Measure “French Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.9.1. French Birthplace not statedΒΆ

Ancestry

Measure “French Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_BP_NS'
    );

Measure “French Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_BP_NS'
    );

Measure “French Birthplace not stated” percent of “French Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_BP_NS',
      'denominator'
    );

Measure “French Birthplace not stated” percent of “French Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:French Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.9.2. French Both parents born in AustraliaΒΆ

Ancestry

Measure “French Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_BP_B_Aus'
    );

Measure “French Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_BP_B_Aus'
    );

Measure “French Both parents born in Australia” percent of “French Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_BP_B_Aus',
      'denominator'
    );

Measure “French Both parents born in Australia” percent of “French Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:French Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.9.3. French Both parents born overseasΒΆ

Ancestry

Measure “French Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_BP_B_OS'
    );

Measure “French Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_BP_B_OS'
    );

Measure “French Both parents born overseas” percent of “French Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_BP_B_OS',
      'denominator'
    );

Measure “French Both parents born overseas” percent of “French Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:French Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.9.4. French Father only born overseasΒΆ

Ancestry

Measure “French Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_FO_B_OS'
    );

Measure “French Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_FO_B_OS'
    );

Measure “French Father only born overseas” percent of “French Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_FO_B_OS',
      'denominator'
    );

Measure “French Father only born overseas” percent of “French Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:French Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.9.5. French Mother only born overseasΒΆ

Ancestry

Measure “French Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_MO_B_OS'
    );

Measure “French Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_MO_B_OS'
    );

Measure “French Mother only born overseas” percent of “French Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_French_MO_B_OS',
      'denominator'
    );

Measure “French Mother only born overseas” percent of “French Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_French_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:French Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.10. German Total ResponsesΒΆ

Ancestry

Measure “German Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_Tot_Resp'
    );

Measure “German Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_Tot_Resp'
    );

Measure “German Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_Tot_Resp',
      'denominator'
    );

Measure “German Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.10.1. German Birthplace not statedΒΆ

Ancestry

Measure “German Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_BP_NS'
    );

Measure “German Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_BP_NS'
    );

Measure “German Birthplace not stated” percent of “German Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_BP_NS',
      'denominator'
    );

Measure “German Birthplace not stated” percent of “German Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:German Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.10.2. German Both parents born in AustraliaΒΆ

Ancestry

Measure “German Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_BP_B_Aus'
    );

Measure “German Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_BP_B_Aus'
    );

Measure “German Both parents born in Australia” percent of “German Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_BP_B_Aus',
      'denominator'
    );

Measure “German Both parents born in Australia” percent of “German Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:German Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.10.3. German Both parents born overseasΒΆ

Ancestry

Measure “German Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_BP_B_OS'
    );

Measure “German Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_BP_B_OS'
    );

Measure “German Both parents born overseas” percent of “German Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_BP_B_OS',
      'denominator'
    );

Measure “German Both parents born overseas” percent of “German Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:German Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.10.4. German Father only born overseasΒΆ

Ancestry

Measure “German Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_FO_B_OS'
    );

Measure “German Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_FO_B_OS'
    );

Measure “German Father only born overseas” percent of “German Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_FO_B_OS',
      'denominator'
    );

Measure “German Father only born overseas” percent of “German Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:German Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.10.5. German Mother only born overseasΒΆ

Ancestry

Measure “German Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_MO_B_OS'
    );

Measure “German Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_MO_B_OS'
    );

Measure “German Mother only born overseas” percent of “German Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_German_MO_B_OS',
      'denominator'
    );

Measure “German Mother only born overseas” percent of “German Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_German_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:German Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.11. Greek Total ResponsesΒΆ

Ancestry

Measure “Greek Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_Tot_Resp'
    );

Measure “Greek Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_Tot_Resp'
    );

Measure “Greek Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_Tot_Resp',
      'denominator'
    );

Measure “Greek Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.11.1. Greek Birthplace not statedΒΆ

Ancestry

Measure “Greek Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_BP_NS'
    );

Measure “Greek Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_BP_NS'
    );

Measure “Greek Birthplace not stated” percent of “Greek Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_BP_NS',
      'denominator'
    );

Measure “Greek Birthplace not stated” percent of “Greek Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greek Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.11.2. Greek Both parents born in AustraliaΒΆ

Ancestry

Measure “Greek Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_BP_B_Aus'
    );

Measure “Greek Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_BP_B_Aus'
    );

Measure “Greek Both parents born in Australia” percent of “Greek Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_BP_B_Aus',
      'denominator'
    );

Measure “Greek Both parents born in Australia” percent of “Greek Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greek Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.11.3. Greek Both parents born overseasΒΆ

Ancestry

Measure “Greek Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_BP_B_OS'
    );

Measure “Greek Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_BP_B_OS'
    );

Measure “Greek Both parents born overseas” percent of “Greek Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_BP_B_OS',
      'denominator'
    );

Measure “Greek Both parents born overseas” percent of “Greek Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greek Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.11.4. Greek Father only born overseasΒΆ

Ancestry

Measure “Greek Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_FO_B_OS'
    );

Measure “Greek Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_FO_B_OS'
    );

Measure “Greek Father only born overseas” percent of “Greek Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_FO_B_OS',
      'denominator'
    );

Measure “Greek Father only born overseas” percent of “Greek Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greek Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.11.5. Greek Mother only born overseasΒΆ

Ancestry

Measure “Greek Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_MO_B_OS'
    );

Measure “Greek Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_MO_B_OS'
    );

Measure “Greek Mother only born overseas” percent of “Greek Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Greek_MO_B_OS',
      'denominator'
    );

Measure “Greek Mother only born overseas” percent of “Greek Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Greek_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greek Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.12. Hungarian Total ResponsesΒΆ

Ancestry

Measure “Hungarian Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_Tot_Resp'
    );

Measure “Hungarian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_Tot_Resp'
    );

Measure “Hungarian Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_Tot_Resp',
      'denominator'
    );

Measure “Hungarian Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.12.1. Hungarian Birthplace not statedΒΆ

Ancestry

Measure “Hungarian Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_BP_NS'
    );

Measure “Hungarian Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_BP_NS'
    );

Measure “Hungarian Birthplace not stated” percent of “Hungarian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_BP_NS',
      'denominator'
    );

Measure “Hungarian Birthplace not stated” percent of “Hungarian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hungarian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.12.2. Hungarian Both parents born in AustraliaΒΆ

Ancestry

Measure “Hungarian Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_BP_B_Aus'
    );

Measure “Hungarian Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_BP_B_Aus'
    );

Measure “Hungarian Both parents born in Australia” percent of “Hungarian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_BP_B_Aus',
      'denominator'
    );

Measure “Hungarian Both parents born in Australia” percent of “Hungarian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hungarian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.12.3. Hungarian Both parents born overseasΒΆ

Ancestry

Measure “Hungarian Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_BP_B_OS'
    );

Measure “Hungarian Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_BP_B_OS'
    );

Measure “Hungarian Both parents born overseas” percent of “Hungarian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_BP_B_OS',
      'denominator'
    );

Measure “Hungarian Both parents born overseas” percent of “Hungarian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hungarian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.12.4. Hungarian Father only born overseasΒΆ

Ancestry

Measure “Hungarian Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_FO_B_OS'
    );

Measure “Hungarian Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_FO_B_OS'
    );

Measure “Hungarian Father only born overseas” percent of “Hungarian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_FO_B_OS',
      'denominator'
    );

Measure “Hungarian Father only born overseas” percent of “Hungarian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hungarian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.12.5. Hungarian Mother only born overseasΒΆ

Ancestry

Measure “Hungarian Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_MO_B_OS'
    );

Measure “Hungarian Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_MO_B_OS'
    );

Measure “Hungarian Mother only born overseas” percent of “Hungarian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Hungarian_MO_B_OS',
      'denominator'
    );

Measure “Hungarian Mother only born overseas” percent of “Hungarian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Hungarian_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hungarian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.13. Indian Total ResponsesΒΆ

Ancestry

Measure “Indian Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_Tot_Resp'
    );

Measure “Indian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_Tot_Resp'
    );

Measure “Indian Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_Tot_Resp',
      'denominator'
    );

Measure “Indian Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.13.1. Indian Birthplace not statedΒΆ

Ancestry

Measure “Indian Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_BP_NS'
    );

Measure “Indian Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_BP_NS'
    );

Measure “Indian Birthplace not stated” percent of “Indian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_BP_NS',
      'denominator'
    );

Measure “Indian Birthplace not stated” percent of “Indian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.13.2. Indian Both parents born in AustraliaΒΆ

Ancestry

Measure “Indian Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_BP_B_Aus'
    );

Measure “Indian Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_BP_B_Aus'
    );

Measure “Indian Both parents born in Australia” percent of “Indian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_BP_B_Aus',
      'denominator'
    );

Measure “Indian Both parents born in Australia” percent of “Indian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.13.3. Indian Both parents born overseasΒΆ

Ancestry

Measure “Indian Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_BP_B_OS'
    );

Measure “Indian Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_BP_B_OS'
    );

Measure “Indian Both parents born overseas” percent of “Indian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_BP_B_OS',
      'denominator'
    );

Measure “Indian Both parents born overseas” percent of “Indian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.13.4. Indian Father only born overseasΒΆ

Ancestry

Measure “Indian Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_FO_B_OS'
    );

Measure “Indian Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_FO_B_OS'
    );

Measure “Indian Father only born overseas” percent of “Indian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_FO_B_OS',
      'denominator'
    );

Measure “Indian Father only born overseas” percent of “Indian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.13.5. Indian Mother only born overseasΒΆ

Ancestry

Measure “Indian Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_MO_B_OS'
    );

Measure “Indian Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_MO_B_OS'
    );

Measure “Indian Mother only born overseas” percent of “Indian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Indian_MO_B_OS',
      'denominator'
    );

Measure “Indian Mother only born overseas” percent of “Indian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Indian_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.14. Irish Total ResponsesΒΆ

Ancestry

Measure “Irish Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_Tot_Resp'
    );

Measure “Irish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_Tot_Resp'
    );

Measure “Irish Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_Tot_Resp',
      'denominator'
    );

Measure “Irish Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.14.1. Irish Birthplace not statedΒΆ

Ancestry

Measure “Irish Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_BP_NS'
    );

Measure “Irish Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_BP_NS'
    );

Measure “Irish Birthplace not stated” percent of “Irish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_BP_NS',
      'denominator'
    );

Measure “Irish Birthplace not stated” percent of “Irish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Irish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.14.2. Irish Both parents born in AustraliaΒΆ

Ancestry

Measure “Irish Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_BP_B_Aus'
    );

Measure “Irish Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_BP_B_Aus'
    );

Measure “Irish Both parents born in Australia” percent of “Irish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_BP_B_Aus',
      'denominator'
    );

Measure “Irish Both parents born in Australia” percent of “Irish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Irish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.14.3. Irish Both parents born overseasΒΆ

Ancestry

Measure “Irish Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_BP_B_OS'
    );

Measure “Irish Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_BP_B_OS'
    );

Measure “Irish Both parents born overseas” percent of “Irish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_BP_B_OS',
      'denominator'
    );

Measure “Irish Both parents born overseas” percent of “Irish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Irish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.14.4. Irish Father only born overseasΒΆ

Ancestry

Measure “Irish Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_FO_B_OS'
    );

Measure “Irish Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_FO_B_OS'
    );

Measure “Irish Father only born overseas” percent of “Irish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_FO_B_OS',
      'denominator'
    );

Measure “Irish Father only born overseas” percent of “Irish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Irish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.14.5. Irish Mother only born overseasΒΆ

Ancestry

Measure “Irish Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_MO_B_OS'
    );

Measure “Irish Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_MO_B_OS'
    );

Measure “Irish Mother only born overseas” percent of “Irish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Irish_MO_B_OS',
      'denominator'
    );

Measure “Irish Mother only born overseas” percent of “Irish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Irish_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Irish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.15. Italian Total ResponsesΒΆ

Ancestry

Measure “Italian Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_Tot_Resp'
    );

Measure “Italian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_Tot_Resp'
    );

Measure “Italian Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_Tot_Resp',
      'denominator'
    );

Measure “Italian Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.15.1. Italian Birthplace not statedΒΆ

Ancestry

Measure “Italian Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_BP_NS'
    );

Measure “Italian Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_BP_NS'
    );

Measure “Italian Birthplace not stated” percent of “Italian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_BP_NS',
      'denominator'
    );

Measure “Italian Birthplace not stated” percent of “Italian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.15.2. Italian Both parents born in AustraliaΒΆ

Ancestry

Measure “Italian Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_BP_B_Aus'
    );

Measure “Italian Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_BP_B_Aus'
    );

Measure “Italian Both parents born in Australia” percent of “Italian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_BP_B_Aus',
      'denominator'
    );

Measure “Italian Both parents born in Australia” percent of “Italian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.15.3. Italian Both parents born overseasΒΆ

Ancestry

Measure “Italian Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_BP_B_OS'
    );

Measure “Italian Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_BP_B_OS'
    );

Measure “Italian Both parents born overseas” percent of “Italian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_BP_B_OS',
      'denominator'
    );

Measure “Italian Both parents born overseas” percent of “Italian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.15.4. Italian Father only born overseasΒΆ

Ancestry

Measure “Italian Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_FO_B_OS'
    );

Measure “Italian Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_FO_B_OS'
    );

Measure “Italian Father only born overseas” percent of “Italian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_FO_B_OS',
      'denominator'
    );

Measure “Italian Father only born overseas” percent of “Italian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.15.5. Italian Mother only born overseasΒΆ

Ancestry

Measure “Italian Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_MO_B_OS'
    );

Measure “Italian Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_MO_B_OS'
    );

Measure “Italian Mother only born overseas” percent of “Italian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Italian_MO_B_OS',
      'denominator'
    );

Measure “Italian Mother only born overseas” percent of “Italian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Italian_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.16. Korean Total ResponsesΒΆ

Ancestry

Measure “Korean Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_Tot_Resp'
    );

Measure “Korean Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_Tot_Resp'
    );

Measure “Korean Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_Tot_Resp',
      'denominator'
    );

Measure “Korean Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.16.1. Korean Birthplace not statedΒΆ

Ancestry

Measure “Korean Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_BP_NS'
    );

Measure “Korean Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_BP_NS'
    );

Measure “Korean Birthplace not stated” percent of “Korean Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_BP_NS',
      'denominator'
    );

Measure “Korean Birthplace not stated” percent of “Korean Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korean Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.16.2. Korean Both parents born in AustraliaΒΆ

Ancestry

Measure “Korean Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_BP_B_Aus'
    );

Measure “Korean Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_BP_B_Aus'
    );

Measure “Korean Both parents born in Australia” percent of “Korean Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_BP_B_Aus',
      'denominator'
    );

Measure “Korean Both parents born in Australia” percent of “Korean Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korean Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.16.3. Korean Both parents born overseasΒΆ

Ancestry

Measure “Korean Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_BP_B_OS'
    );

Measure “Korean Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_BP_B_OS'
    );

Measure “Korean Both parents born overseas” percent of “Korean Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_BP_B_OS',
      'denominator'
    );

Measure “Korean Both parents born overseas” percent of “Korean Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korean Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.16.4. Korean Father only born overseasΒΆ

Ancestry

Measure “Korean Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_FO_B_OS'
    );

Measure “Korean Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_FO_B_OS'
    );

Measure “Korean Father only born overseas” percent of “Korean Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_FO_B_OS',
      'denominator'
    );

Measure “Korean Father only born overseas” percent of “Korean Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korean Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.16.5. Korean Mother only born overseasΒΆ

Ancestry

Measure “Korean Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_MO_B_OS'
    );

Measure “Korean Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_MO_B_OS'
    );

Measure “Korean Mother only born overseas” percent of “Korean Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Korean_MO_B_OS',
      'denominator'
    );

Measure “Korean Mother only born overseas” percent of “Korean Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Korean_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korean Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.17. Lebanese Total ResponsesΒΆ

Ancestry

Measure “Lebanese Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_Tot_Resp'
    );

Measure “Lebanese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_Tot_Resp'
    );

Measure “Lebanese Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_Tot_Resp',
      'denominator'
    );

Measure “Lebanese Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.17.1. Lebanese Birthplace not statedΒΆ

Ancestry

Measure “Lebanese Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_BP_NS'
    );

Measure “Lebanese Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_BP_NS'
    );

Measure “Lebanese Birthplace not stated” percent of “Lebanese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_BP_NS',
      'denominator'
    );

Measure “Lebanese Birthplace not stated” percent of “Lebanese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.17.2. Lebanese Both parents born in AustraliaΒΆ

Ancestry

Measure “Lebanese Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_BP_B_Aus'
    );

Measure “Lebanese Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_BP_B_Aus'
    );

Measure “Lebanese Both parents born in Australia” percent of “Lebanese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_BP_B_Aus',
      'denominator'
    );

Measure “Lebanese Both parents born in Australia” percent of “Lebanese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.17.3. Lebanese Both parents born overseasΒΆ

Ancestry

Measure “Lebanese Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_BP_B_OS'
    );

Measure “Lebanese Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_BP_B_OS'
    );

Measure “Lebanese Both parents born overseas” percent of “Lebanese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_BP_B_OS',
      'denominator'
    );

Measure “Lebanese Both parents born overseas” percent of “Lebanese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.17.4. Lebanese Father only born overseasΒΆ

Ancestry

Measure “Lebanese Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_FO_B_OS'
    );

Measure “Lebanese Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_FO_B_OS'
    );

Measure “Lebanese Father only born overseas” percent of “Lebanese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_FO_B_OS',
      'denominator'
    );

Measure “Lebanese Father only born overseas” percent of “Lebanese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.17.5. Lebanese Mother only born overseasΒΆ

Ancestry

Measure “Lebanese Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_MO_B_OS'
    );

Measure “Lebanese Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_MO_B_OS'
    );

Measure “Lebanese Mother only born overseas” percent of “Lebanese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Lebanese_MO_B_OS',
      'denominator'
    );

Measure “Lebanese Mother only born overseas” percent of “Lebanese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Lebanese_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.18. Macedonian Total ResponsesΒΆ

Ancestry

Measure “Macedonian Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macedonian_Tot_Resp'
    );

Measure “Macedonian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macedonian_Tot_Resp'
    );

Measure “Macedonian Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macedonian_Tot_Resp',
      'denominator'
    );

Measure “Macedonian Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macedonian_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.18.1. Macedonian Birthplace not statedΒΆ

Ancestry

Measure “Macedonian Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macdonian_BP_NS'
    );

Measure “Macedonian Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macdonian_BP_NS'
    );

Measure “Macedonian Birthplace not stated” percent of “Macedonian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macdonian_BP_NS',
      'denominator'
    );

Measure “Macedonian Birthplace not stated” percent of “Macedonian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macdonian_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Macedonian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.18.2. Macedonian Both parents born in AustraliaΒΆ

Ancestry

Measure “Macedonian Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macdonian_BP_B_Aus'
    );

Measure “Macedonian Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macdonian_BP_B_Aus'
    );

Measure “Macedonian Both parents born in Australia” percent of “Macedonian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macdonian_BP_B_Aus',
      'denominator'
    );

Measure “Macedonian Both parents born in Australia” percent of “Macedonian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macdonian_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Macedonian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.18.3. Macedonian Both parents born overseasΒΆ

Ancestry

Measure “Macedonian Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macedonian_BP_B_OS'
    );

Measure “Macedonian Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macedonian_BP_B_OS'
    );

Measure “Macedonian Both parents born overseas” percent of “Macedonian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macedonian_BP_B_OS',
      'denominator'
    );

Measure “Macedonian Both parents born overseas” percent of “Macedonian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macedonian_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Macedonian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.18.4. Macedonian Father only born overseasΒΆ

Ancestry

Measure “Macedonian Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macdonian_FO_B_OS'
    );

Measure “Macedonian Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macdonian_FO_B_OS'
    );

Measure “Macedonian Father only born overseas” percent of “Macedonian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macdonian_FO_B_OS',
      'denominator'
    );

Measure “Macedonian Father only born overseas” percent of “Macedonian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macdonian_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Macedonian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.18.5. Macedonian Mother only born overseasΒΆ

Ancestry

Measure “Macedonian Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macdonian_MO_B_OS'
    );

Measure “Macedonian Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macdonian_MO_B_OS'
    );

Measure “Macedonian Mother only born overseas” percent of “Macedonian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Macdonian_MO_B_OS',
      'denominator'
    );

Measure “Macedonian Mother only born overseas” percent of “Macedonian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Macdonian_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Macedonian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.19. Maltese Total ResponsesΒΆ

Ancestry

Measure “Maltese Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_Tot_Resp'
    );

Measure “Maltese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_Tot_Resp'
    );

Measure “Maltese Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_Tot_Resp',
      'denominator'
    );

Measure “Maltese Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.19.1. Maltese Birthplace not statedΒΆ

Ancestry

Measure “Maltese Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_BP_NS'
    );

Measure “Maltese Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_BP_NS'
    );

Measure “Maltese Birthplace not stated” percent of “Maltese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_BP_NS',
      'denominator'
    );

Measure “Maltese Birthplace not stated” percent of “Maltese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Maltese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.19.2. Maltese Both parents born in AustraliaΒΆ

Ancestry

Measure “Maltese Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_BP_B_Aus'
    );

Measure “Maltese Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_BP_B_Aus'
    );

Measure “Maltese Both parents born in Australia” percent of “Maltese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_BP_B_Aus',
      'denominator'
    );

Measure “Maltese Both parents born in Australia” percent of “Maltese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Maltese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.19.3. Maltese Both parents born overseasΒΆ

Ancestry

Measure “Maltese Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_BP_B_OS'
    );

Measure “Maltese Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_BP_B_OS'
    );

Measure “Maltese Both parents born overseas” percent of “Maltese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_BP_B_OS',
      'denominator'
    );

Measure “Maltese Both parents born overseas” percent of “Maltese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Maltese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.19.4. Maltese Father only born overseasΒΆ

Ancestry

Measure “Maltese Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_FO_B_OS'
    );

Measure “Maltese Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_FO_B_OS'
    );

Measure “Maltese Father only born overseas” percent of “Maltese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_FO_B_OS',
      'denominator'
    );

Measure “Maltese Father only born overseas” percent of “Maltese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Maltese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.19.5. Maltese Mother only born overseasΒΆ

Ancestry

Measure “Maltese Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_MO_B_OS'
    );

Measure “Maltese Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_MO_B_OS'
    );

Measure “Maltese Mother only born overseas” percent of “Maltese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maltese_MO_B_OS',
      'denominator'
    );

Measure “Maltese Mother only born overseas” percent of “Maltese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maltese_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Maltese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.20. Maori Total ResponsesΒΆ

Ancestry

Measure “Maori Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_Tot_Resp'
    );

Measure “Maori Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_Tot_Resp'
    );

Measure “Maori Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_Tot_Resp',
      'denominator'
    );

Measure “Maori Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.20.1. Maori Birthplace not statedΒΆ

Ancestry

Measure “Maori Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_BP_NS'
    );

Measure “Maori Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_BP_NS'
    );

Measure “Maori Birthplace not stated” percent of “Maori Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_BP_NS',
      'denominator'
    );

Measure “Maori Birthplace not stated” percent of “Maori Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Maori Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.20.2. Maori Both parents born in AustraliaΒΆ

Ancestry

Measure “Maori Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_BP_B_Aus'
    );

Measure “Maori Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_BP_B_Aus'
    );

Measure “Maori Both parents born in Australia” percent of “Maori Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_BP_B_Aus',
      'denominator'
    );

Measure “Maori Both parents born in Australia” percent of “Maori Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Maori Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.20.3. Maori Both parents born overseasΒΆ

Ancestry

Measure “Maori Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_BP_B_OS'
    );

Measure “Maori Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_BP_B_OS'
    );

Measure “Maori Both parents born overseas” percent of “Maori Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_BP_B_OS',
      'denominator'
    );

Measure “Maori Both parents born overseas” percent of “Maori Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Maori Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.20.4. Maori Father only born overseasΒΆ

Ancestry

Measure “Maori Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_FO_B_OS'
    );

Measure “Maori Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_FO_B_OS'
    );

Measure “Maori Father only born overseas” percent of “Maori Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_FO_B_OS',
      'denominator'
    );

Measure “Maori Father only born overseas” percent of “Maori Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Maori Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.20.5. Maori Mother only born overseasΒΆ

Ancestry

Measure “Maori Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_MO_B_OS'
    );

Measure “Maori Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_MO_B_OS'
    );

Measure “Maori Mother only born overseas” percent of “Maori Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Maori_MO_B_OS',
      'denominator'
    );

Measure “Maori Mother only born overseas” percent of “Maori Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Maori_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Maori Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.21. New Zealander Total ResponsesΒΆ

Ancestry

Measure “New Zealander Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_Tot_Resp'
    );

Measure “New Zealander Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_Tot_Resp'
    );

Measure “New Zealander Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_Tot_Resp',
      'denominator'
    );

Measure “New Zealander Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.21.1. New Zealander Birthplace not statedΒΆ

Ancestry

Measure “New Zealander Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_BP_NS'
    );

Measure “New Zealander Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_BP_NS'
    );

Measure “New Zealander Birthplace not stated” percent of “New Zealander Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_BP_NS',
      'denominator'
    );

Measure “New Zealander Birthplace not stated” percent of “New Zealander Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealander Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.21.2. New Zealander Both parents born in AustraliaΒΆ

Ancestry

Measure “New Zealander Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_BP_B_Aus'
    );

Measure “New Zealander Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_BP_B_Aus'
    );

Measure “New Zealander Both parents born in Australia” percent of “New Zealander Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_BP_B_Aus',
      'denominator'
    );

Measure “New Zealander Both parents born in Australia” percent of “New Zealander Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealander Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.21.3. New Zealander Both parents born overseasΒΆ

Ancestry

Measure “New Zealander Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_BP_B_OS'
    );

Measure “New Zealander Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_BP_B_OS'
    );

Measure “New Zealander Both parents born overseas” percent of “New Zealander Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_BP_B_OS',
      'denominator'
    );

Measure “New Zealander Both parents born overseas” percent of “New Zealander Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealander Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.21.4. New Zealander Father only born overseasΒΆ

Ancestry

Measure “New Zealander Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_FO_B_OS'
    );

Measure “New Zealander Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_FO_B_OS'
    );

Measure “New Zealander Father only born overseas” percent of “New Zealander Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_FO_B_OS',
      'denominator'
    );

Measure “New Zealander Father only born overseas” percent of “New Zealander Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealander Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.21.5. New Zealander Mother only born overseasΒΆ

Ancestry

Measure “New Zealander Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_MO_B_OS'
    );

Measure “New Zealander Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_MO_B_OS'
    );

Measure “New Zealander Mother only born overseas” percent of “New Zealander Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_NZ_MO_B_OS',
      'denominator'
    );

Measure “New Zealander Mother only born overseas” percent of “New Zealander Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_NZ_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealander Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.22. Other Total ResponsesΒΆ

Ancestry

Measure “Other Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_Tot_Resp'
    );

Measure “Other Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_Tot_Resp'
    );

Measure “Other Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_Tot_Resp',
      'denominator'
    );

Measure “Other Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.22.1. Other Birthplace not statedΒΆ

Ancestry

Measure “Other Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_BP_NS'
    );

Measure “Other Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_BP_NS'
    );

Measure “Other Birthplace not stated” percent of “Other Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_BP_NS',
      'denominator'
    );

Measure “Other Birthplace not stated” percent of “Other Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Other Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.22.2. Other Both parents born in AustraliaΒΆ

Ancestry

Measure “Other Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_BP_B_Aus'
    );

Measure “Other Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_BP_B_Aus'
    );

Measure “Other Both parents born in Australia” percent of “Other Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_BP_B_Aus',
      'denominator'
    );

Measure “Other Both parents born in Australia” percent of “Other Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Other Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.22.3. Other Both parents born overseasΒΆ

Ancestry

Measure “Other Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_BP_B_OS'
    );

Measure “Other Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_BP_B_OS'
    );

Measure “Other Both parents born overseas” percent of “Other Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_BP_B_OS',
      'denominator'
    );

Measure “Other Both parents born overseas” percent of “Other Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Other Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.22.4. Other Father only born overseasΒΆ

Ancestry

Measure “Other Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_FO_B_OS'
    );

Measure “Other Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_FO_B_OS'
    );

Measure “Other Father only born overseas” percent of “Other Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_FO_B_OS',
      'denominator'
    );

Measure “Other Father only born overseas” percent of “Other Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Other Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.22.5. Other Mother only born overseasΒΆ

Ancestry

Measure “Other Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_MO_B_OS'
    );

Measure “Other Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_MO_B_OS'
    );

Measure “Other Mother only born overseas” percent of “Other Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Other_MO_B_OS',
      'denominator'
    );

Measure “Other Mother only born overseas” percent of “Other Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Other_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Other Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.23. Polish Total ResponsesΒΆ

Ancestry

Measure “Polish Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_Tot_Resp'
    );

Measure “Polish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_Tot_Resp'
    );

Measure “Polish Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_Tot_Resp',
      'denominator'
    );

Measure “Polish Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.23.1. Polish Birthplace not statedΒΆ

Ancestry

Measure “Polish Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_BP_NS'
    );

Measure “Polish Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_BP_NS'
    );

Measure “Polish Birthplace not stated” percent of “Polish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_BP_NS',
      'denominator'
    );

Measure “Polish Birthplace not stated” percent of “Polish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Polish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.23.2. Polish Both parents born in AustraliaΒΆ

Ancestry

Measure “Polish Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_BP_B_Aus'
    );

Measure “Polish Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_BP_B_Aus'
    );

Measure “Polish Both parents born in Australia” percent of “Polish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_BP_B_Aus',
      'denominator'
    );

Measure “Polish Both parents born in Australia” percent of “Polish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Polish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.23.3. Polish Both parents born overseasΒΆ

Ancestry

Measure “Polish Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_BP_B_OS'
    );

Measure “Polish Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_BP_B_OS'
    );

Measure “Polish Both parents born overseas” percent of “Polish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_BP_B_OS',
      'denominator'
    );

Measure “Polish Both parents born overseas” percent of “Polish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Polish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.23.4. Polish Father only born overseasΒΆ

Ancestry

Measure “Polish Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_FO_B_OS'
    );

Measure “Polish Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_FO_B_OS'
    );

Measure “Polish Father only born overseas” percent of “Polish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_FO_B_OS',
      'denominator'
    );

Measure “Polish Father only born overseas” percent of “Polish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Polish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.23.5. Polish Mother only born overseasΒΆ

Ancestry

Measure “Polish Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_MO_B_OS'
    );

Measure “Polish Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_MO_B_OS'
    );

Measure “Polish Mother only born overseas” percent of “Polish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Polish_MO_B_OS',
      'denominator'
    );

Measure “Polish Mother only born overseas” percent of “Polish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Polish_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Polish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.24. Russian Total ResponsesΒΆ

Ancestry

Measure “Russian Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_Tot_Resp'
    );

Measure “Russian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_Tot_Resp'
    );

Measure “Russian Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_Tot_Resp',
      'denominator'
    );

Measure “Russian Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.24.1. Russian Birthplace not statedΒΆ

Ancestry

Measure “Russian Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_BP_NS'
    );

Measure “Russian Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_BP_NS'
    );

Measure “Russian Birthplace not stated” percent of “Russian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_BP_NS',
      'denominator'
    );

Measure “Russian Birthplace not stated” percent of “Russian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Russian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.24.2. Russian Both parents born in AustraliaΒΆ

Ancestry

Measure “Russian Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_BP_B_Aus'
    );

Measure “Russian Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_BP_B_Aus'
    );

Measure “Russian Both parents born in Australia” percent of “Russian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_BP_B_Aus',
      'denominator'
    );

Measure “Russian Both parents born in Australia” percent of “Russian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Russian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.24.3. Russian Both parents born overseasΒΆ

Ancestry

Measure “Russian Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_BP_B_OS'
    );

Measure “Russian Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_BP_B_OS'
    );

Measure “Russian Both parents born overseas” percent of “Russian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_BP_B_OS',
      'denominator'
    );

Measure “Russian Both parents born overseas” percent of “Russian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Russian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.24.4. Russian Father only born overseasΒΆ

Ancestry

Measure “Russian Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_FO_B_OS'
    );

Measure “Russian Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_FO_B_OS'
    );

Measure “Russian Father only born overseas” percent of “Russian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_FO_B_OS',
      'denominator'
    );

Measure “Russian Father only born overseas” percent of “Russian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Russian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.24.5. Russian Mother only born overseasΒΆ

Ancestry

Measure “Russian Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_MO_B_OS'
    );

Measure “Russian Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_MO_B_OS'
    );

Measure “Russian Mother only born overseas” percent of “Russian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Russian_MO_B_OS',
      'denominator'
    );

Measure “Russian Mother only born overseas” percent of “Russian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Russian_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Russian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.25. Scottish Total ResponsesΒΆ

Ancestry

Measure “Scottish Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_Tot_Resp'
    );

Measure “Scottish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_Tot_Resp'
    );

Measure “Scottish Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_Tot_Resp',
      'denominator'
    );

Measure “Scottish Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.25.1. Scottish Birthplace not statedΒΆ

Ancestry

Measure “Scottish Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_BP_NS'
    );

Measure “Scottish Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_BP_NS'
    );

Measure “Scottish Birthplace not stated” percent of “Scottish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_BP_NS',
      'denominator'
    );

Measure “Scottish Birthplace not stated” percent of “Scottish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Scottish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.25.2. Scottish Both parents born in AustraliaΒΆ

Ancestry

Measure “Scottish Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_BP_B_Aus'
    );

Measure “Scottish Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_BP_B_Aus'
    );

Measure “Scottish Both parents born in Australia” percent of “Scottish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_BP_B_Aus',
      'denominator'
    );

Measure “Scottish Both parents born in Australia” percent of “Scottish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Scottish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.25.3. Scottish Both parents born overseasΒΆ

Ancestry

Measure “Scottish Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_BP_B_OS'
    );

Measure “Scottish Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_BP_B_OS'
    );

Measure “Scottish Both parents born overseas” percent of “Scottish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_BP_B_OS',
      'denominator'
    );

Measure “Scottish Both parents born overseas” percent of “Scottish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Scottish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.25.4. Scottish Father only born overseasΒΆ

Ancestry

Measure “Scottish Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_FO_B_OS'
    );

Measure “Scottish Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_FO_B_OS'
    );

Measure “Scottish Father only born overseas” percent of “Scottish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_FO_B_OS',
      'denominator'
    );

Measure “Scottish Father only born overseas” percent of “Scottish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Scottish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.25.5. Scottish Mother only born overseasΒΆ

Ancestry

Measure “Scottish Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_MO_B_OS'
    );

Measure “Scottish Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_MO_B_OS'
    );

Measure “Scottish Mother only born overseas” percent of “Scottish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Scottish_MO_B_OS',
      'denominator'
    );

Measure “Scottish Mother only born overseas” percent of “Scottish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Scottish_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Scottish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.26. Serbian Total ResponsesΒΆ

Ancestry

Measure “Serbian Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_Tot_Resp'
    );

Measure “Serbian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_Tot_Resp'
    );

Measure “Serbian Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_Tot_Resp',
      'denominator'
    );

Measure “Serbian Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.26.1. Serbian Birthplace not statedΒΆ

Ancestry

Measure “Serbian Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_BP_NS'
    );

Measure “Serbian Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_BP_NS'
    );

Measure “Serbian Birthplace not stated” percent of “Serbian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_BP_NS',
      'denominator'
    );

Measure “Serbian Birthplace not stated” percent of “Serbian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Serbian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.26.2. Serbian Both parents born in AustraliaΒΆ

Ancestry

Measure “Serbian Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_BP_B_Aus'
    );

Measure “Serbian Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_BP_B_Aus'
    );

Measure “Serbian Both parents born in Australia” percent of “Serbian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_BP_B_Aus',
      'denominator'
    );

Measure “Serbian Both parents born in Australia” percent of “Serbian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Serbian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.26.3. Serbian Both parents born overseasΒΆ

Ancestry

Measure “Serbian Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_BP_B_OS'
    );

Measure “Serbian Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_BP_B_OS'
    );

Measure “Serbian Both parents born overseas” percent of “Serbian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_BP_B_OS',
      'denominator'
    );

Measure “Serbian Both parents born overseas” percent of “Serbian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Serbian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.26.4. Serbian Father only born overseasΒΆ

Ancestry

Measure “Serbian Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_FO_B_OS'
    );

Measure “Serbian Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_FO_B_OS'
    );

Measure “Serbian Father only born overseas” percent of “Serbian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_FO_B_OS',
      'denominator'
    );

Measure “Serbian Father only born overseas” percent of “Serbian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Serbian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.26.5. Serbian Mother only born overseasΒΆ

Ancestry

Measure “Serbian Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_MO_B_OS'
    );

Measure “Serbian Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_MO_B_OS'
    );

Measure “Serbian Mother only born overseas” percent of “Serbian Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Serbian_MO_B_OS',
      'denominator'
    );

Measure “Serbian Mother only born overseas” percent of “Serbian Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Serbian_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Serbian Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.27. Sinhalese Total ResponsesΒΆ

Ancestry

Measure “Sinhalese Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_Tot_Resp'
    );

Measure “Sinhalese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_Tot_Resp'
    );

Measure “Sinhalese Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_Tot_Resp',
      'denominator'
    );

Measure “Sinhalese Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.27.1. Sinhalese Birthplace not statedΒΆ

Ancestry

Measure “Sinhalese Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_BP_NS'
    );

Measure “Sinhalese Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_BP_NS'
    );

Measure “Sinhalese Birthplace not stated” percent of “Sinhalese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_BP_NS',
      'denominator'
    );

Measure “Sinhalese Birthplace not stated” percent of “Sinhalese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sinhalese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.27.2. Sinhalese Both parents born in AustraliaΒΆ

Ancestry

Measure “Sinhalese Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_BP_B_Aus'
    );

Measure “Sinhalese Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_BP_B_Aus'
    );

Measure “Sinhalese Both parents born in Australia” percent of “Sinhalese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_BP_B_Aus',
      'denominator'
    );

Measure “Sinhalese Both parents born in Australia” percent of “Sinhalese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sinhalese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.27.3. Sinhalese Both parents born overseasΒΆ

Ancestry

Measure “Sinhalese Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_BP_B_OS'
    );

Measure “Sinhalese Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_BP_B_OS'
    );

Measure “Sinhalese Both parents born overseas” percent of “Sinhalese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_BP_B_OS',
      'denominator'
    );

Measure “Sinhalese Both parents born overseas” percent of “Sinhalese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sinhalese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.27.4. Sinhalese Father only born overseasΒΆ

Ancestry

Measure “Sinhalese Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_FO_B_OS'
    );

Measure “Sinhalese Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_FO_B_OS'
    );

Measure “Sinhalese Father only born overseas” percent of “Sinhalese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_FO_B_OS',
      'denominator'
    );

Measure “Sinhalese Father only born overseas” percent of “Sinhalese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sinhalese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.27.5. Sinhalese Mother only born overseasΒΆ

Ancestry

Measure “Sinhalese Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_MO_B_OS'
    );

Measure “Sinhalese Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_MO_B_OS'
    );

Measure “Sinhalese Mother only born overseas” percent of “Sinhalese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sinhalese_MO_B_OS',
      'denominator'
    );

Measure “Sinhalese Mother only born overseas” percent of “Sinhalese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sinhalese_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sinhalese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.28. South African Total ResponsesΒΆ

Ancestry

Measure “South African Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_African_Tot_Resp'
    );

Measure “South African Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_African_Tot_Resp'
    );

Measure “South African Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_African_Tot_Resp',
      'denominator'
    );

Measure “South African Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_African_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.28.1. South African Birthplace not statedΒΆ

Ancestry

Measure “South African Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_African_BP_NS'
    );

Measure “South African Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_African_BP_NS'
    );

Measure “South African Birthplace not stated” percent of “South African Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_African_BP_NS',
      'denominator'
    );

Measure “South African Birthplace not stated” percent of “South African Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_African_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South African Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.28.2. South African Both parents born in AustraliaΒΆ

Ancestry

Measure “South African Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_Afrcan_BP_B_Aus'
    );

Measure “South African Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_Afrcan_BP_B_Aus'
    );

Measure “South African Both parents born in Australia” percent of “South African Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_Afrcan_BP_B_Aus',
      'denominator'
    );

Measure “South African Both parents born in Australia” percent of “South African Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_Afrcan_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South African Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.28.3. South African Both parents born overseasΒΆ

Ancestry

Measure “South African Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_African_BP_B_OS'
    );

Measure “South African Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_African_BP_B_OS'
    );

Measure “South African Both parents born overseas” percent of “South African Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_African_BP_B_OS',
      'denominator'
    );

Measure “South African Both parents born overseas” percent of “South African Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_African_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South African Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.28.4. South African Father only born overseasΒΆ

Ancestry

Measure “South African Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_African_FO_B_OS'
    );

Measure “South African Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_African_FO_B_OS'
    );

Measure “South African Father only born overseas” percent of “South African Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_African_FO_B_OS',
      'denominator'
    );

Measure “South African Father only born overseas” percent of “South African Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_African_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South African Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.28.5. South African Mother only born overseasΒΆ

Ancestry

Measure “South African Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_African_MO_B_OS'
    );

Measure “South African Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_African_MO_B_OS'
    );

Measure “South African Mother only born overseas” percent of “South African Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Sth_African_MO_B_OS',
      'denominator'
    );

Measure “South African Mother only born overseas” percent of “South African Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Sth_African_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South African Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.29. Spanish Total ResponsesΒΆ

Ancestry

Measure “Spanish Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_Tot_Resp'
    );

Measure “Spanish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_Tot_Resp'
    );

Measure “Spanish Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_Tot_Resp',
      'denominator'
    );

Measure “Spanish Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.29.1. Spanish Birthplace not statedΒΆ

Ancestry

Measure “Spanish Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_BP_NS'
    );

Measure “Spanish Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_BP_NS'
    );

Measure “Spanish Birthplace not stated” percent of “Spanish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_BP_NS',
      'denominator'
    );

Measure “Spanish Birthplace not stated” percent of “Spanish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Spanish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.29.2. Spanish Both parents born in AustraliaΒΆ

Ancestry

Measure “Spanish Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_BP_B_Aus'
    );

Measure “Spanish Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_BP_B_Aus'
    );

Measure “Spanish Both parents born in Australia” percent of “Spanish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_BP_B_Aus',
      'denominator'
    );

Measure “Spanish Both parents born in Australia” percent of “Spanish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Spanish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.29.3. Spanish Both parents born overseasΒΆ

Ancestry

Measure “Spanish Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_BP_B_OS'
    );

Measure “Spanish Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_BP_B_OS'
    );

Measure “Spanish Both parents born overseas” percent of “Spanish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_BP_B_OS',
      'denominator'
    );

Measure “Spanish Both parents born overseas” percent of “Spanish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Spanish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.29.4. Spanish Father only born overseasΒΆ

Ancestry

Measure “Spanish Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_FO_B_OS'
    );

Measure “Spanish Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_FO_B_OS'
    );

Measure “Spanish Father only born overseas” percent of “Spanish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_FO_B_OS',
      'denominator'
    );

Measure “Spanish Father only born overseas” percent of “Spanish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Spanish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.29.5. Spanish Mother only born overseasΒΆ

Ancestry

Measure “Spanish Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_MO_B_OS'
    );

Measure “Spanish Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_MO_B_OS'
    );

Measure “Spanish Mother only born overseas” percent of “Spanish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Spanish_MO_B_OS',
      'denominator'
    );

Measure “Spanish Mother only born overseas” percent of “Spanish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Spanish_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Spanish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.30. Total Persons Birthplace not statedΒΆ

Ancestry

Measure “Total Persons Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08B_Tot_P_Country_birth_ns'
    );

Measure “Total Persons Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08B_Tot_P_Country_birth_ns'
    );

Measure “Total Persons Birthplace not stated” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08B_Tot_P_Country_birth_ns',
      'denominator'
    );

Measure “Total Persons Birthplace not stated” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08B_Tot_P_Country_birth_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.31. Total Persons Both parents born in AustraliaΒΆ

Ancestry

Measure “Total Persons Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08B_Tot_P_BP_B_Aus'
    );

Measure “Total Persons Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08B_Tot_P_BP_B_Aus'
    );

Measure “Total Persons Both parents born in Australia” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08B_Tot_P_BP_B_Aus',
      'denominator'
    );

Measure “Total Persons Both parents born in Australia” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08B_Tot_P_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.32. Total Persons Both parents born overseasΒΆ

Ancestry

Measure “Total Persons Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_P_BP_B_OS'
    );

Measure “Total Persons Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_P_BP_B_OS'
    );

Measure “Total Persons Both parents born overseas” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_P_BP_B_OS',
      'denominator'
    );

Measure “Total Persons Both parents born overseas” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_P_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.33. Total Persons Father only born overseasΒΆ

Ancestry

Measure “Total Persons Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_P_FO_B_OS'
    );

Measure “Total Persons Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_P_FO_B_OS'
    );

Measure “Total Persons Father only born overseas” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_P_FO_B_OS',
      'denominator'
    );

Measure “Total Persons Father only born overseas” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_P_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.34. Total Persons Mother only born overseasΒΆ

Ancestry

Measure “Total Persons Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08B_Tot_P_MO_B_OS'
    );

Measure “Total Persons Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08B_Tot_P_MO_B_OS'
    );

Measure “Total Persons Mother only born overseas” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08B_Tot_P_MO_B_OS',
      'denominator'
    );

Measure “Total Persons Mother only born overseas” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08B_Tot_P_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.35. Total responses Total ResponsesΒΆ

Ancestry

Measure “Total responses Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_responses_Tot_Resp'
    );

Measure “Total responses Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_responses_Tot_Resp'
    );

Measure “Total responses Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_responses_Tot_Resp',
      'denominator'
    );

Measure “Total responses Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_responses_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.35.1. Total responses Birthplace not statedΒΆ

Ancestry

Measure “Total responses Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_responses_Count_birth_ns'
    );

Measure “Total responses Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_responses_Count_birth_ns'
    );

Measure “Total responses Birthplace not stated” percent of “Total responses Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_responses_Count_birth_ns',
      'denominator'
    );

Measure “Total responses Birthplace not stated” percent of “Total responses Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_responses_Count_birth_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total responses Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.35.2. Total responses Both parents born in AustraliaΒΆ

Ancestry

Measure “Total responses Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_resp_BP_B_Aus'
    );

Measure “Total responses Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_resp_BP_B_Aus'
    );

Measure “Total responses Both parents born in Australia” percent of “Total responses Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_resp_BP_B_Aus',
      'denominator'
    );

Measure “Total responses Both parents born in Australia” percent of “Total responses Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_resp_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total responses Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.35.3. Total responses Both parents born overseasΒΆ

Ancestry

Measure “Total responses Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_respnses_BP_B_OS'
    );

Measure “Total responses Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_respnses_BP_B_OS'
    );

Measure “Total responses Both parents born overseas” percent of “Total responses Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_respnses_BP_B_OS',
      'denominator'
    );

Measure “Total responses Both parents born overseas” percent of “Total responses Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_respnses_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total responses Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.35.4. Total responses Father only born overseasΒΆ

Ancestry

Measure “Total responses Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_respnses_FO_B_OS'
    );

Measure “Total responses Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_respnses_FO_B_OS'
    );

Measure “Total responses Father only born overseas” percent of “Total responses Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_respnses_FO_B_OS',
      'denominator'
    );

Measure “Total responses Father only born overseas” percent of “Total responses Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_respnses_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total responses Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.35.5. Total responses Mother only born overseasΒΆ

Ancestry

Measure “Total responses Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_respnses_MO_B_OS'
    );

Measure “Total responses Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_respnses_MO_B_OS'
    );

Measure “Total responses Mother only born overseas” percent of “Total responses Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Tot_respnses_MO_B_OS',
      'denominator'
    );

Measure “Total responses Mother only born overseas” percent of “Total responses Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Tot_respnses_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total responses Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.36. Turkish Total ResponsesΒΆ

Ancestry

Measure “Turkish Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_Tot_Resp'
    );

Measure “Turkish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_Tot_Resp'
    );

Measure “Turkish Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_Tot_Resp',
      'denominator'
    );

Measure “Turkish Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.36.1. Turkish Birthplace not statedΒΆ

Ancestry

Measure “Turkish Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_BP_NS'
    );

Measure “Turkish Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_BP_NS'
    );

Measure “Turkish Birthplace not stated” percent of “Turkish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_BP_NS',
      'denominator'
    );

Measure “Turkish Birthplace not stated” percent of “Turkish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.36.2. Turkish Both parents born in AustraliaΒΆ

Ancestry

Measure “Turkish Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_BP_B_Aus'
    );

Measure “Turkish Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_BP_B_Aus'
    );

Measure “Turkish Both parents born in Australia” percent of “Turkish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_BP_B_Aus',
      'denominator'
    );

Measure “Turkish Both parents born in Australia” percent of “Turkish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.36.3. Turkish Both parents born overseasΒΆ

Ancestry

Measure “Turkish Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_BP_B_OS'
    );

Measure “Turkish Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_BP_B_OS'
    );

Measure “Turkish Both parents born overseas” percent of “Turkish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_BP_B_OS',
      'denominator'
    );

Measure “Turkish Both parents born overseas” percent of “Turkish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.36.4. Turkish Father only born overseasΒΆ

Ancestry

Measure “Turkish Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_FO_B_OS'
    );

Measure “Turkish Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_FO_B_OS'
    );

Measure “Turkish Father only born overseas” percent of “Turkish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_FO_B_OS',
      'denominator'
    );

Measure “Turkish Father only born overseas” percent of “Turkish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.36.5. Turkish Mother only born overseasΒΆ

Ancestry

Measure “Turkish Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_MO_B_OS'
    );

Measure “Turkish Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_MO_B_OS'
    );

Measure “Turkish Mother only born overseas” percent of “Turkish Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Turkish_MO_B_OS',
      'denominator'
    );

Measure “Turkish Mother only born overseas” percent of “Turkish Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Turkish_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkish Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.37. Vietnamese Total ResponsesΒΆ

Ancestry

Measure “Vietnamese Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_Tot_Resp'
    );

Measure “Vietnamese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_Tot_Resp'
    );

Measure “Vietnamese Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_Tot_Resp',
      'denominator'
    );

Measure “Vietnamese Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.37.1. Vietnamese Birthplace not statedΒΆ

Ancestry

Measure “Vietnamese Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_BP_NS'
    );

Measure “Vietnamese Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_BP_NS'
    );

Measure “Vietnamese Birthplace not stated” percent of “Vietnamese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_BP_NS',
      'denominator'
    );

Measure “Vietnamese Birthplace not stated” percent of “Vietnamese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnamese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.37.2. Vietnamese Both parents born in AustraliaΒΆ

Ancestry

Measure “Vietnamese Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_BP_B_Aus'
    );

Measure “Vietnamese Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_BP_B_Aus'
    );

Measure “Vietnamese Both parents born in Australia” percent of “Vietnamese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_BP_B_Aus',
      'denominator'
    );

Measure “Vietnamese Both parents born in Australia” percent of “Vietnamese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnamese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.37.3. Vietnamese Both parents born overseasΒΆ

Ancestry

Measure “Vietnamese Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_BP_B_OS'
    );

Measure “Vietnamese Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_BP_B_OS'
    );

Measure “Vietnamese Both parents born overseas” percent of “Vietnamese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_BP_B_OS',
      'denominator'
    );

Measure “Vietnamese Both parents born overseas” percent of “Vietnamese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnamese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.37.4. Vietnamese Father only born overseasΒΆ

Ancestry

Measure “Vietnamese Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_Fther_only_brn_os'
    );

Measure “Vietnamese Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_Fther_only_brn_os'
    );

Measure “Vietnamese Father only born overseas” percent of “Vietnamese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_Fther_only_brn_os',
      'denominator'
    );

Measure “Vietnamese Father only born overseas” percent of “Vietnamese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_Fther_only_brn_os',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnamese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.37.5. Vietnamese Mother only born overseasΒΆ

Ancestry

Measure “Vietnamese Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_MO_B_OS'
    );

Measure “Vietnamese Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_MO_B_OS'
    );

Measure “Vietnamese Mother only born overseas” percent of “Vietnamese Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Vietnamese_MO_B_OS',
      'denominator'
    );

Measure “Vietnamese Mother only born overseas” percent of “Vietnamese Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Vietnamese_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnamese Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.38. Welsh Total ResponsesΒΆ

Ancestry

Measure “Welsh Total Responses” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_Tot_Resp'
    );

Measure “Welsh Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_Tot_Resp'
    );

Measure “Welsh Total Responses” percent of “Total Persons Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_Tot_Resp',
      'denominator'
    );

Measure “Welsh Total Responses” percent of “Total Persons Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_Tot_Resp',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Persons Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.38.1. Welsh Birthplace not statedΒΆ

Ancestry

Measure “Welsh Birthplace not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_BP_NS'
    );

Measure “Welsh Birthplace not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_BP_NS'
    );

Measure “Welsh Birthplace not stated” percent of “Welsh Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_BP_NS',
      'denominator'
    );

Measure “Welsh Birthplace not stated” percent of “Welsh Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_BP_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Welsh Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.38.2. Welsh Both parents born in AustraliaΒΆ

Ancestry

Measure “Welsh Both parents born in Australia” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_BP_B_Aus'
    );

Measure “Welsh Both parents born in Australia” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_BP_B_Aus'
    );

Measure “Welsh Both parents born in Australia” percent of “Welsh Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_BP_B_Aus',
      'denominator'
    );

Measure “Welsh Both parents born in Australia” percent of “Welsh Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_BP_B_Aus',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Welsh Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.38.3. Welsh Both parents born overseasΒΆ

Ancestry

Measure “Welsh Both parents born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_BP_B_OS'
    );

Measure “Welsh Both parents born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_BP_B_OS'
    );

Measure “Welsh Both parents born overseas” percent of “Welsh Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_BP_B_OS',
      'denominator'
    );

Measure “Welsh Both parents born overseas” percent of “Welsh Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_BP_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Welsh Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.38.4. Welsh Father only born overseasΒΆ

Ancestry

Measure “Welsh Father only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_FO_B_OS'
    );

Measure “Welsh Father only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_FO_B_OS'
    );

Measure “Welsh Father only born overseas” percent of “Welsh Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_FO_B_OS',
      'denominator'
    );

Measure “Welsh Father only born overseas” percent of “Welsh Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_FO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Welsh Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.2.38.5. Welsh Mother only born overseasΒΆ

Ancestry

Measure “Welsh Mother only born overseas” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_MO_B_OS'
    );

Measure “Welsh Mother only born overseas” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_MO_B_OS'
    );

Measure “Welsh Mother only born overseas” percent of “Welsh Total Responses” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B08A_Welsh_MO_B_OS',
      'denominator'
    );

Measure “Welsh Mother only born overseas” percent of “Welsh Total Responses” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B08A_Welsh_MO_B_OS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Welsh Total Responses
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3. Total TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_Tot'
    );

Measure “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_Tot'
    );

Measure “Total Total” percent of “Total (Persons)” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_Tot',
      'denominator'
    );

Measure “Total Total” percent of “Total (Persons)” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total (Persons)
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1. Born elsewhere TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_Tot'
    );

Measure “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_Tot'
    );

Measure “Born elsewhere Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_Tot',
      'denominator'
    );

Measure “Born elsewhere Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.1. Born elsewhere Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1941_1950'
    );

Measure “Born elsewhere Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1941_1950'
    );

Measure “Born elsewhere Year of arrival 1941-1950” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1941_1950',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 1941-1950” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.2. Born elsewhere Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1951_1960'
    );

Measure “Born elsewhere Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1951_1960'
    );

Measure “Born elsewhere Year of arrival 1951-1960” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1951_1960',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 1951-1960” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.3. Born elsewhere Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1961_1970'
    );

Measure “Born elsewhere Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1961_1970'
    );

Measure “Born elsewhere Year of arrival 1961-1970” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1961_1970',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 1961-1970” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.4. Born elsewhere Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1971_1980'
    );

Measure “Born elsewhere Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1971_1980'
    );

Measure “Born elsewhere Year of arrival 1971-1980” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1971_1980',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 1971-1980” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.5. Born elsewhere Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1981_1990'
    );

Measure “Born elsewhere Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1981_1990'
    );

Measure “Born elsewhere Year of arrival 1981-1990” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1981_1990',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 1981-1990” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.6. Born elsewhere Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1991_2000'
    );

Measure “Born elsewhere Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1991_2000'
    );

Measure “Born elsewhere Year of arrival 1991-2000” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_1991_2000',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 1991-2000” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.7. Born elsewhere Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2001_2005'
    );

Measure “Born elsewhere Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2001_2005'
    );

Measure “Born elsewhere Year of arrival 2001-2005” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2001_2005',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 2001-2005” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.8. Born elsewhere Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2006'
    );

Measure “Born elsewhere Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2006'
    );

Measure “Born elsewhere Year of arrival 2006” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2006',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 2006” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.9. Born elsewhere Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2007'
    );

Measure “Born elsewhere Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2007'
    );

Measure “Born elsewhere Year of arrival 2007” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2007',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 2007” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.10. Born elsewhere Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2008'
    );

Measure “Born elsewhere Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2008'
    );

Measure “Born elsewhere Year of arrival 2008” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2008',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 2008” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.11. Born elsewhere Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2009'
    );

Measure “Born elsewhere Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2009'
    );

Measure “Born elsewhere Year of arrival 2009” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2009',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 2009” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.12. Born elsewhere Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2010'
    );

Measure “Born elsewhere Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2010'
    );

Measure “Born elsewhere Year of arrival 2010” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2010',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 2010” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.13. Born elsewhere Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2011'
    );

Measure “Born elsewhere Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2011'
    );

Measure “Born elsewhere Year of arrival 2011” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_2011',
      'denominator'
    );

Measure “Born elsewhere Year of arrival 2011” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.14. Born elsewhere Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_Before_1941'
    );

Measure “Born elsewhere Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_Before_1941'
    );

Measure “Born elsewhere Year of arrival Before 1941” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_Before_1941',
      'denominator'
    );

Measure “Born elsewhere Year of arrival Before 1941” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.1.15. Born elsewhere Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Born elsewhere Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_Yr_arrival_ns'
    );

Measure “Born elsewhere Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_Yr_arrival_ns'
    );

Measure “Born elsewhere Year of arrival not stated” percent of “Born elsewhere Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Born_elsewhere_Yr_arrival_ns',
      'denominator'
    );

Measure “Born elsewhere Year of arrival not stated” percent of “Born elsewhere Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Born_elsewhere_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Born elsewhere Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2. Bosnia and Herzegovina TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_Tot'
    );

Measure “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_Tot'
    );

Measure “Bosnia and Herzegovina Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_Tot',
      'denominator'
    );

Measure “Bosnia and Herzegovina Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.1. Bosnia and Herzegovina Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1941_1950'
    );

Measure “Bosnia and Herzegovina Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1941_1950'
    );

Measure “Bosnia and Herzegovina Year of arrival 1941-1950” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1941_1950',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 1941-1950” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.2. Bosnia and Herzegovina Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1951_1960'
    );

Measure “Bosnia and Herzegovina Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1951_1960'
    );

Measure “Bosnia and Herzegovina Year of arrival 1951-1960” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1951_1960',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 1951-1960” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.3. Bosnia and Herzegovina Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1961_1970'
    );

Measure “Bosnia and Herzegovina Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1961_1970'
    );

Measure “Bosnia and Herzegovina Year of arrival 1961-1970” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1961_1970',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 1961-1970” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.4. Bosnia and Herzegovina Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1971_1980'
    );

Measure “Bosnia and Herzegovina Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1971_1980'
    );

Measure “Bosnia and Herzegovina Year of arrival 1971-1980” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1971_1980',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 1971-1980” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.5. Bosnia and Herzegovina Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1981_1990'
    );

Measure “Bosnia and Herzegovina Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1981_1990'
    );

Measure “Bosnia and Herzegovina Year of arrival 1981-1990” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1981_1990',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 1981-1990” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.6. Bosnia and Herzegovina Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1991_2000'
    );

Measure “Bosnia and Herzegovina Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1991_2000'
    );

Measure “Bosnia and Herzegovina Year of arrival 1991-2000” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_1991_2000',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 1991-2000” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.7. Bosnia and Herzegovina Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2001_2005'
    );

Measure “Bosnia and Herzegovina Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2001_2005'
    );

Measure “Bosnia and Herzegovina Year of arrival 2001-2005” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2001_2005',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 2001-2005” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.8. Bosnia and Herzegovina Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2006'
    );

Measure “Bosnia and Herzegovina Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2006'
    );

Measure “Bosnia and Herzegovina Year of arrival 2006” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2006',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 2006” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.9. Bosnia and Herzegovina Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2007'
    );

Measure “Bosnia and Herzegovina Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2007'
    );

Measure “Bosnia and Herzegovina Year of arrival 2007” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2007',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 2007” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.10. Bosnia and Herzegovina Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2008'
    );

Measure “Bosnia and Herzegovina Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2008'
    );

Measure “Bosnia and Herzegovina Year of arrival 2008” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2008',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 2008” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.11. Bosnia and Herzegovina Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2009'
    );

Measure “Bosnia and Herzegovina Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2009'
    );

Measure “Bosnia and Herzegovina Year of arrival 2009” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2009',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 2009” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.12. Bosnia and Herzegovina Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2010'
    );

Measure “Bosnia and Herzegovina Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2010'
    );

Measure “Bosnia and Herzegovina Year of arrival 2010” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2010',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 2010” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.13. Bosnia and Herzegovina Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2011'
    );

Measure “Bosnia and Herzegovina Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2011'
    );

Measure “Bosnia and Herzegovina Year of arrival 2011” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_2011',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival 2011” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.14. Bosnia and Herzegovina Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_Befre_1941'
    );

Measure “Bosnia and Herzegovina Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_Befre_1941'
    );

Measure “Bosnia and Herzegovina Year of arrival Before 1941” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_Befre_1941',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival Before 1941” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_Befre_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.2.15. Bosnia and Herzegovina Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Bosnia and Herzegovina Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_arrival_ns'
    );

Measure “Bosnia and Herzegovina Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_arrival_ns'
    );

Measure “Bosnia and Herzegovina Year of arrival not stated” percent of “Bosnia and Herzegovina Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Bosnia_Herzegovina_arrival_ns',
      'denominator'
    );

Measure “Bosnia and Herzegovina Year of arrival not stated” percent of “Bosnia and Herzegovina Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Bosnia_Herzegovina_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Bosnia and Herzegovina Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3. Cambodia TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_Tot'
    );

Measure “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_Tot'
    );

Measure “Cambodia Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_Tot',
      'denominator'
    );

Measure “Cambodia Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.1. Cambodia Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1941_1950'
    );

Measure “Cambodia Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1941_1950'
    );

Measure “Cambodia Year of arrival 1941-1950” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1941_1950',
      'denominator'
    );

Measure “Cambodia Year of arrival 1941-1950” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.2. Cambodia Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1951_1960'
    );

Measure “Cambodia Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1951_1960'
    );

Measure “Cambodia Year of arrival 1951-1960” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1951_1960',
      'denominator'
    );

Measure “Cambodia Year of arrival 1951-1960” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.3. Cambodia Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1961_1970'
    );

Measure “Cambodia Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1961_1970'
    );

Measure “Cambodia Year of arrival 1961-1970” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1961_1970',
      'denominator'
    );

Measure “Cambodia Year of arrival 1961-1970” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.4. Cambodia Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1971_1980'
    );

Measure “Cambodia Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1971_1980'
    );

Measure “Cambodia Year of arrival 1971-1980” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1971_1980',
      'denominator'
    );

Measure “Cambodia Year of arrival 1971-1980” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.5. Cambodia Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1981_1990'
    );

Measure “Cambodia Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1981_1990'
    );

Measure “Cambodia Year of arrival 1981-1990” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1981_1990',
      'denominator'
    );

Measure “Cambodia Year of arrival 1981-1990” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.6. Cambodia Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1991_2000'
    );

Measure “Cambodia Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1991_2000'
    );

Measure “Cambodia Year of arrival 1991-2000” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_1991_2000',
      'denominator'
    );

Measure “Cambodia Year of arrival 1991-2000” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.7. Cambodia Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2001_2005'
    );

Measure “Cambodia Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2001_2005'
    );

Measure “Cambodia Year of arrival 2001-2005” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2001_2005',
      'denominator'
    );

Measure “Cambodia Year of arrival 2001-2005” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.8. Cambodia Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2006'
    );

Measure “Cambodia Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2006'
    );

Measure “Cambodia Year of arrival 2006” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2006',
      'denominator'
    );

Measure “Cambodia Year of arrival 2006” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.9. Cambodia Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2007'
    );

Measure “Cambodia Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2007'
    );

Measure “Cambodia Year of arrival 2007” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2007',
      'denominator'
    );

Measure “Cambodia Year of arrival 2007” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.10. Cambodia Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2008'
    );

Measure “Cambodia Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2008'
    );

Measure “Cambodia Year of arrival 2008” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2008',
      'denominator'
    );

Measure “Cambodia Year of arrival 2008” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.11. Cambodia Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2009'
    );

Measure “Cambodia Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2009'
    );

Measure “Cambodia Year of arrival 2009” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2009',
      'denominator'
    );

Measure “Cambodia Year of arrival 2009” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.12. Cambodia Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2010'
    );

Measure “Cambodia Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2010'
    );

Measure “Cambodia Year of arrival 2010” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2010',
      'denominator'
    );

Measure “Cambodia Year of arrival 2010” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.13. Cambodia Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2011'
    );

Measure “Cambodia Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2011'
    );

Measure “Cambodia Year of arrival 2011” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_2011',
      'denominator'
    );

Measure “Cambodia Year of arrival 2011” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.14. Cambodia Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_Before_1941'
    );

Measure “Cambodia Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_Before_1941'
    );

Measure “Cambodia Year of arrival Before 1941” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_Before_1941',
      'denominator'
    );

Measure “Cambodia Year of arrival Before 1941” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.3.15. Cambodia Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Cambodia Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_Yr_arrival_ns'
    );

Measure “Cambodia Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_Yr_arrival_ns'
    );

Measure “Cambodia Year of arrival not stated” percent of “Cambodia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Cambodia_Yr_arrival_ns',
      'denominator'
    );

Measure “Cambodia Year of arrival not stated” percent of “Cambodia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Cambodia_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Cambodia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4. Canada TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_Tot'
    );

Measure “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_Tot'
    );

Measure “Canada Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_Tot',
      'denominator'
    );

Measure “Canada Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.1. Canada Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1941_1950'
    );

Measure “Canada Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1941_1950'
    );

Measure “Canada Year of arrival 1941-1950” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1941_1950',
      'denominator'
    );

Measure “Canada Year of arrival 1941-1950” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.2. Canada Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1951_1960'
    );

Measure “Canada Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1951_1960'
    );

Measure “Canada Year of arrival 1951-1960” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1951_1960',
      'denominator'
    );

Measure “Canada Year of arrival 1951-1960” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.3. Canada Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1961_1970'
    );

Measure “Canada Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1961_1970'
    );

Measure “Canada Year of arrival 1961-1970” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1961_1970',
      'denominator'
    );

Measure “Canada Year of arrival 1961-1970” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.4. Canada Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1971_1980'
    );

Measure “Canada Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1971_1980'
    );

Measure “Canada Year of arrival 1971-1980” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1971_1980',
      'denominator'
    );

Measure “Canada Year of arrival 1971-1980” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.5. Canada Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1981_1990'
    );

Measure “Canada Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1981_1990'
    );

Measure “Canada Year of arrival 1981-1990” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1981_1990',
      'denominator'
    );

Measure “Canada Year of arrival 1981-1990” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.6. Canada Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1991_2000'
    );

Measure “Canada Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1991_2000'
    );

Measure “Canada Year of arrival 1991-2000” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_1991_2000',
      'denominator'
    );

Measure “Canada Year of arrival 1991-2000” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.7. Canada Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2001_2005'
    );

Measure “Canada Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2001_2005'
    );

Measure “Canada Year of arrival 2001-2005” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2001_2005',
      'denominator'
    );

Measure “Canada Year of arrival 2001-2005” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.8. Canada Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2006'
    );

Measure “Canada Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2006'
    );

Measure “Canada Year of arrival 2006” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2006',
      'denominator'
    );

Measure “Canada Year of arrival 2006” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.9. Canada Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2007'
    );

Measure “Canada Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2007'
    );

Measure “Canada Year of arrival 2007” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2007',
      'denominator'
    );

Measure “Canada Year of arrival 2007” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.10. Canada Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2008'
    );

Measure “Canada Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2008'
    );

Measure “Canada Year of arrival 2008” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2008',
      'denominator'
    );

Measure “Canada Year of arrival 2008” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.11. Canada Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2009'
    );

Measure “Canada Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2009'
    );

Measure “Canada Year of arrival 2009” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2009',
      'denominator'
    );

Measure “Canada Year of arrival 2009” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.12. Canada Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2010'
    );

Measure “Canada Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2010'
    );

Measure “Canada Year of arrival 2010” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2010',
      'denominator'
    );

Measure “Canada Year of arrival 2010” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.13. Canada Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2011'
    );

Measure “Canada Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2011'
    );

Measure “Canada Year of arrival 2011” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_2011',
      'denominator'
    );

Measure “Canada Year of arrival 2011” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.14. Canada Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_Before_1941'
    );

Measure “Canada Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_Before_1941'
    );

Measure “Canada Year of arrival Before 1941” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_Before_1941',
      'denominator'
    );

Measure “Canada Year of arrival Before 1941” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.4.15. Canada Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Canada Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_Yr_arrival_NS'
    );

Measure “Canada Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_Yr_arrival_NS'
    );

Measure “Canada Year of arrival not stated” percent of “Canada Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Canada_Yr_arrival_NS',
      'denominator'
    );

Measure “Canada Year of arrival not stated” percent of “Canada Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Canada_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Canada Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5. China excl SARs and Taiwan TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_Tot'
    );

Measure “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_Tot'
    );

Measure “China excl SARs and Taiwan Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_Tot',
      'denominator'
    );

Measure “China excl SARs and Taiwan Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.1. China excl SARs and Taiwan Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_41_50'
    );

Measure “China excl SARs and Taiwan Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_41_50'
    );

Measure “China excl SARs and Taiwan Year of arrival 1941-1950” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_41_50',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 1941-1950” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_41_50',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.2. China excl SARs and Taiwan Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_51_60'
    );

Measure “China excl SARs and Taiwan Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_51_60'
    );

Measure “China excl SARs and Taiwan Year of arrival 1951-1960” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_51_60',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 1951-1960” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_51_60',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.3. China excl SARs and Taiwan Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_61_70'
    );

Measure “China excl SARs and Taiwan Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_61_70'
    );

Measure “China excl SARs and Taiwan Year of arrival 1961-1970” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_61_70',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 1961-1970” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_61_70',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.4. China excl SARs and Taiwan Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_71_80'
    );

Measure “China excl SARs and Taiwan Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_71_80'
    );

Measure “China excl SARs and Taiwan Year of arrival 1971-1980” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_71_80',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 1971-1980” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_71_80',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.5. China excl SARs and Taiwan Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_81_90'
    );

Measure “China excl SARs and Taiwan Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_81_90'
    );

Measure “China excl SARs and Taiwan Year of arrival 1981-1990” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_81_90',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 1981-1990” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_81_90',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.6. China excl SARs and Taiwan Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_91_00'
    );

Measure “China excl SARs and Taiwan Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_91_00'
    );

Measure “China excl SARs and Taiwan Year of arrival 1991-2000” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_91_00',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 1991-2000” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_91_00',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.7. China excl SARs and Taiwan Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_01_05'
    );

Measure “China excl SARs and Taiwan Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_01_05'
    );

Measure “China excl SARs and Taiwan Year of arrival 2001-2005” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_01_05',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 2001-2005” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_01_05',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.8. China excl SARs and Taiwan Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2006'
    );

Measure “China excl SARs and Taiwan Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2006'
    );

Measure “China excl SARs and Taiwan Year of arrival 2006” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2006',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 2006” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.9. China excl SARs and Taiwan Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2007'
    );

Measure “China excl SARs and Taiwan Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2007'
    );

Measure “China excl SARs and Taiwan Year of arrival 2007” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2007',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 2007” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.10. China excl SARs and Taiwan Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2008'
    );

Measure “China excl SARs and Taiwan Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2008'
    );

Measure “China excl SARs and Taiwan Year of arrival 2008” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2008',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 2008” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.11. China excl SARs and Taiwan Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2009'
    );

Measure “China excl SARs and Taiwan Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2009'
    );

Measure “China excl SARs and Taiwan Year of arrival 2009” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2009',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 2009” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.12. China excl SARs and Taiwan Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2010'
    );

Measure “China excl SARs and Taiwan Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2010'
    );

Measure “China excl SARs and Taiwan Year of arrival 2010” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2010',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 2010” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.13. China excl SARs and Taiwan Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2011'
    );

Measure “China excl SARs and Taiwan Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2011'
    );

Measure “China excl SARs and Taiwan Year of arrival 2011” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiwan_2011',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival 2011” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiwan_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.14. China excl SARs and Taiwan Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiw_Bef_1941'
    );

Measure “China excl SARs and Taiwan Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiw_Bef_1941'
    );

Measure “China excl SARs and Taiwan Year of arrival Before 1941” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Taiw_Bef_1941',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival Before 1941” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Taiw_Bef_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.5.15. China excl SARs and Taiwan Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “China excl SARs and Taiwan Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Tawan_arr_ns'
    );

Measure “China excl SARs and Taiwan Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Tawan_arr_ns'
    );

Measure “China excl SARs and Taiwan Year of arrival not stated” percent of “China excl SARs and Taiwan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_China_exc_SARs_Tawan_arr_ns',
      'denominator'
    );

Measure “China excl SARs and Taiwan Year of arrival not stated” percent of “China excl SARs and Taiwan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_China_exc_SARs_Tawan_arr_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:China excl SARs and Taiwan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6. Croatia TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_Tot'
    );

Measure “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_Tot'
    );

Measure “Croatia Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_Tot',
      'denominator'
    );

Measure “Croatia Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.1. Croatia Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1941_1950'
    );

Measure “Croatia Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1941_1950'
    );

Measure “Croatia Year of arrival 1941-1950” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1941_1950',
      'denominator'
    );

Measure “Croatia Year of arrival 1941-1950” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.2. Croatia Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1951_1960'
    );

Measure “Croatia Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1951_1960'
    );

Measure “Croatia Year of arrival 1951-1960” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1951_1960',
      'denominator'
    );

Measure “Croatia Year of arrival 1951-1960” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.3. Croatia Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1961_1970'
    );

Measure “Croatia Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1961_1970'
    );

Measure “Croatia Year of arrival 1961-1970” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1961_1970',
      'denominator'
    );

Measure “Croatia Year of arrival 1961-1970” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.4. Croatia Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1971_1980'
    );

Measure “Croatia Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1971_1980'
    );

Measure “Croatia Year of arrival 1971-1980” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1971_1980',
      'denominator'
    );

Measure “Croatia Year of arrival 1971-1980” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.5. Croatia Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1981_1990'
    );

Measure “Croatia Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1981_1990'
    );

Measure “Croatia Year of arrival 1981-1990” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1981_1990',
      'denominator'
    );

Measure “Croatia Year of arrival 1981-1990” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.6. Croatia Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1991_2000'
    );

Measure “Croatia Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1991_2000'
    );

Measure “Croatia Year of arrival 1991-2000” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_1991_2000',
      'denominator'
    );

Measure “Croatia Year of arrival 1991-2000” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.7. Croatia Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2001_2005'
    );

Measure “Croatia Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2001_2005'
    );

Measure “Croatia Year of arrival 2001-2005” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2001_2005',
      'denominator'
    );

Measure “Croatia Year of arrival 2001-2005” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.8. Croatia Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2006'
    );

Measure “Croatia Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2006'
    );

Measure “Croatia Year of arrival 2006” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2006',
      'denominator'
    );

Measure “Croatia Year of arrival 2006” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.9. Croatia Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2007'
    );

Measure “Croatia Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2007'
    );

Measure “Croatia Year of arrival 2007” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2007',
      'denominator'
    );

Measure “Croatia Year of arrival 2007” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.10. Croatia Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2008'
    );

Measure “Croatia Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2008'
    );

Measure “Croatia Year of arrival 2008” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2008',
      'denominator'
    );

Measure “Croatia Year of arrival 2008” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.11. Croatia Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2009'
    );

Measure “Croatia Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2009'
    );

Measure “Croatia Year of arrival 2009” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2009',
      'denominator'
    );

Measure “Croatia Year of arrival 2009” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.12. Croatia Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2010'
    );

Measure “Croatia Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2010'
    );

Measure “Croatia Year of arrival 2010” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2010',
      'denominator'
    );

Measure “Croatia Year of arrival 2010” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.13. Croatia Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2011'
    );

Measure “Croatia Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2011'
    );

Measure “Croatia Year of arrival 2011” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_2011',
      'denominator'
    );

Measure “Croatia Year of arrival 2011” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.14. Croatia Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_Before_1941'
    );

Measure “Croatia Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_Before_1941'
    );

Measure “Croatia Year of arrival Before 1941” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_Before_1941',
      'denominator'
    );

Measure “Croatia Year of arrival Before 1941” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.6.15. Croatia Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Croatia Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_Yr_arrival_NS'
    );

Measure “Croatia Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_Yr_arrival_NS'
    );

Measure “Croatia Year of arrival not stated” percent of “Croatia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Croatia_Yr_arrival_NS',
      'denominator'
    );

Measure “Croatia Year of arrival not stated” percent of “Croatia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Croatia_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Croatia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7. Egypt TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_Tot'
    );

Measure “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_Tot'
    );

Measure “Egypt Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_Tot',
      'denominator'
    );

Measure “Egypt Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.1. Egypt Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1941_1950'
    );

Measure “Egypt Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1941_1950'
    );

Measure “Egypt Year of arrival 1941-1950” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1941_1950',
      'denominator'
    );

Measure “Egypt Year of arrival 1941-1950” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.2. Egypt Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1951_1960'
    );

Measure “Egypt Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1951_1960'
    );

Measure “Egypt Year of arrival 1951-1960” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1951_1960',
      'denominator'
    );

Measure “Egypt Year of arrival 1951-1960” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.3. Egypt Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1961_1970'
    );

Measure “Egypt Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1961_1970'
    );

Measure “Egypt Year of arrival 1961-1970” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1961_1970',
      'denominator'
    );

Measure “Egypt Year of arrival 1961-1970” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.4. Egypt Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1971_1980'
    );

Measure “Egypt Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1971_1980'
    );

Measure “Egypt Year of arrival 1971-1980” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1971_1980',
      'denominator'
    );

Measure “Egypt Year of arrival 1971-1980” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.5. Egypt Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1981_1990'
    );

Measure “Egypt Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1981_1990'
    );

Measure “Egypt Year of arrival 1981-1990” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1981_1990',
      'denominator'
    );

Measure “Egypt Year of arrival 1981-1990” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.6. Egypt Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1991_2000'
    );

Measure “Egypt Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1991_2000'
    );

Measure “Egypt Year of arrival 1991-2000” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_1991_2000',
      'denominator'
    );

Measure “Egypt Year of arrival 1991-2000” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.7. Egypt Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2001_2005'
    );

Measure “Egypt Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2001_2005'
    );

Measure “Egypt Year of arrival 2001-2005” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2001_2005',
      'denominator'
    );

Measure “Egypt Year of arrival 2001-2005” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.8. Egypt Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2006'
    );

Measure “Egypt Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2006'
    );

Measure “Egypt Year of arrival 2006” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2006',
      'denominator'
    );

Measure “Egypt Year of arrival 2006” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.9. Egypt Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2007'
    );

Measure “Egypt Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2007'
    );

Measure “Egypt Year of arrival 2007” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2007',
      'denominator'
    );

Measure “Egypt Year of arrival 2007” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.10. Egypt Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2008'
    );

Measure “Egypt Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2008'
    );

Measure “Egypt Year of arrival 2008” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2008',
      'denominator'
    );

Measure “Egypt Year of arrival 2008” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.11. Egypt Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2009'
    );

Measure “Egypt Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2009'
    );

Measure “Egypt Year of arrival 2009” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2009',
      'denominator'
    );

Measure “Egypt Year of arrival 2009” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.12. Egypt Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2010'
    );

Measure “Egypt Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2010'
    );

Measure “Egypt Year of arrival 2010” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2010',
      'denominator'
    );

Measure “Egypt Year of arrival 2010” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.13. Egypt Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2011'
    );

Measure “Egypt Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2011'
    );

Measure “Egypt Year of arrival 2011” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_2011',
      'denominator'
    );

Measure “Egypt Year of arrival 2011” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.14. Egypt Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_Before_1941'
    );

Measure “Egypt Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_Before_1941'
    );

Measure “Egypt Year of arrival Before 1941” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_Before_1941',
      'denominator'
    );

Measure “Egypt Year of arrival Before 1941” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.7.15. Egypt Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Egypt Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_Yr_arrival_NS'
    );

Measure “Egypt Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_Yr_arrival_NS'
    );

Measure “Egypt Year of arrival not stated” percent of “Egypt Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Egypt_Yr_arrival_NS',
      'denominator'
    );

Measure “Egypt Year of arrival not stated” percent of “Egypt Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Egypt_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Egypt Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8. Fiji TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_Tot'
    );

Measure “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_Tot'
    );

Measure “Fiji Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_Tot',
      'denominator'
    );

Measure “Fiji Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.1. Fiji Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1941_1950'
    );

Measure “Fiji Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1941_1950'
    );

Measure “Fiji Year of arrival 1941-1950” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1941_1950',
      'denominator'
    );

Measure “Fiji Year of arrival 1941-1950” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.2. Fiji Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1951_1960'
    );

Measure “Fiji Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1951_1960'
    );

Measure “Fiji Year of arrival 1951-1960” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1951_1960',
      'denominator'
    );

Measure “Fiji Year of arrival 1951-1960” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.3. Fiji Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1961_1970'
    );

Measure “Fiji Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1961_1970'
    );

Measure “Fiji Year of arrival 1961-1970” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1961_1970',
      'denominator'
    );

Measure “Fiji Year of arrival 1961-1970” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.4. Fiji Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1971_1980'
    );

Measure “Fiji Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1971_1980'
    );

Measure “Fiji Year of arrival 1971-1980” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1971_1980',
      'denominator'
    );

Measure “Fiji Year of arrival 1971-1980” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.5. Fiji Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1981_1990'
    );

Measure “Fiji Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1981_1990'
    );

Measure “Fiji Year of arrival 1981-1990” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1981_1990',
      'denominator'
    );

Measure “Fiji Year of arrival 1981-1990” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.6. Fiji Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1991_2000'
    );

Measure “Fiji Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1991_2000'
    );

Measure “Fiji Year of arrival 1991-2000” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_1991_2000',
      'denominator'
    );

Measure “Fiji Year of arrival 1991-2000” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.7. Fiji Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2001_2005'
    );

Measure “Fiji Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2001_2005'
    );

Measure “Fiji Year of arrival 2001-2005” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2001_2005',
      'denominator'
    );

Measure “Fiji Year of arrival 2001-2005” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.8. Fiji Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2006'
    );

Measure “Fiji Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2006'
    );

Measure “Fiji Year of arrival 2006” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2006',
      'denominator'
    );

Measure “Fiji Year of arrival 2006” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.9. Fiji Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2007'
    );

Measure “Fiji Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2007'
    );

Measure “Fiji Year of arrival 2007” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2007',
      'denominator'
    );

Measure “Fiji Year of arrival 2007” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.10. Fiji Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2008'
    );

Measure “Fiji Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2008'
    );

Measure “Fiji Year of arrival 2008” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2008',
      'denominator'
    );

Measure “Fiji Year of arrival 2008” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.11. Fiji Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2009'
    );

Measure “Fiji Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2009'
    );

Measure “Fiji Year of arrival 2009” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2009',
      'denominator'
    );

Measure “Fiji Year of arrival 2009” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.12. Fiji Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2010'
    );

Measure “Fiji Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2010'
    );

Measure “Fiji Year of arrival 2010” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2010',
      'denominator'
    );

Measure “Fiji Year of arrival 2010” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.13. Fiji Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2011'
    );

Measure “Fiji Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2011'
    );

Measure “Fiji Year of arrival 2011” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_2011',
      'denominator'
    );

Measure “Fiji Year of arrival 2011” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.14. Fiji Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_Before_1941'
    );

Measure “Fiji Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_Before_1941'
    );

Measure “Fiji Year of arrival Before 1941” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_Before_1941',
      'denominator'
    );

Measure “Fiji Year of arrival Before 1941” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.8.15. Fiji Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Fiji Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_Yr_arrival_NS'
    );

Measure “Fiji Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_Yr_arrival_NS'
    );

Measure “Fiji Year of arrival not stated” percent of “Fiji Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Fiji_Yr_arrival_NS',
      'denominator'
    );

Measure “Fiji Year of arrival not stated” percent of “Fiji Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Fiji_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Fiji Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9. Former Yugoslav Republic of Macedonia FYROM TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_Tot'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_Tot'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_Tot',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.1. Former Yugoslav Republic of Macedonia FYROM Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1941_1950'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1941_1950'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1941-1950” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1941_1950',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1941-1950” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.2. Former Yugoslav Republic of Macedonia FYROM Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1951_1960'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1951_1960'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1951-1960” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1951_1960',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1951-1960” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.3. Former Yugoslav Republic of Macedonia FYROM Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1961_1970'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1961_1970'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1961-1970” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1961_1970',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1961-1970” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.4. Former Yugoslav Republic of Macedonia FYROM Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1971_1980'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1971_1980'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1971-1980” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1971_1980',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1971-1980” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.5. Former Yugoslav Republic of Macedonia FYROM Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1981_1990'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1981_1990'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1981-1990” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1981_1990',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1981-1990” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.6. Former Yugoslav Republic of Macedonia FYROM Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1991_2000'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1991_2000'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1991-2000” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1991_2000',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 1991-2000” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.7. Former Yugoslav Republic of Macedonia FYROM Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_2001_2005'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_2001_2005'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2001-2005” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_2001_2005',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2001-2005” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.8. Former Yugoslav Republic of Macedonia FYROM Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2006'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2006'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2006” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2006',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2006” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.9. Former Yugoslav Republic of Macedonia FYROM Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2007'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2007'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2007” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2007',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2007” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.10. Former Yugoslav Republic of Macedonia FYROM Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2008'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2008'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2008” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2008',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2008” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.11. Former Yugoslav Republic of Macedonia FYROM Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2009'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2009'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2009” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2009',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2009” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.12. Former Yugoslav Republic of Macedonia FYROM Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2010'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2010'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2010” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2010',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2010” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.13. Former Yugoslav Republic of Macedonia FYROM Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2011'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2011'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2011” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2011',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival 2011” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Yug_Rep_Mac_FYROM_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.14. Former Yugoslav Republic of Macedonia FYROM Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_Bef_1941'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_Bef_1941'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival Before 1941” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_Bef_1941',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival Before 1941” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_Bef_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.9.15. Former Yugoslav Republic of Macedonia FYROM Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_arrival_ns'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_arrival_ns'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival not stated” percent of “Former Yugoslav Republic of Macedonia FYROM Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Frmr_Y_R_M_FYROM_arrival_ns',
      'denominator'
    );

Measure “Former Yugoslav Republic of Macedonia FYROM Year of arrival not stated” percent of “Former Yugoslav Republic of Macedonia FYROM Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Frmr_Y_R_M_FYROM_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Former Yugoslav Republic of Macedonia FYROM Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10. Germany TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_Tot'
    );

Measure “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_Tot'
    );

Measure “Germany Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_Tot',
      'denominator'
    );

Measure “Germany Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.1. Germany Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1941_1950'
    );

Measure “Germany Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1941_1950'
    );

Measure “Germany Year of arrival 1941-1950” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1941_1950',
      'denominator'
    );

Measure “Germany Year of arrival 1941-1950” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.2. Germany Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1951_1960'
    );

Measure “Germany Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1951_1960'
    );

Measure “Germany Year of arrival 1951-1960” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1951_1960',
      'denominator'
    );

Measure “Germany Year of arrival 1951-1960” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.3. Germany Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1961_1970'
    );

Measure “Germany Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1961_1970'
    );

Measure “Germany Year of arrival 1961-1970” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1961_1970',
      'denominator'
    );

Measure “Germany Year of arrival 1961-1970” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.4. Germany Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1971_1980'
    );

Measure “Germany Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1971_1980'
    );

Measure “Germany Year of arrival 1971-1980” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1971_1980',
      'denominator'
    );

Measure “Germany Year of arrival 1971-1980” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.5. Germany Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1981_1990'
    );

Measure “Germany Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1981_1990'
    );

Measure “Germany Year of arrival 1981-1990” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1981_1990',
      'denominator'
    );

Measure “Germany Year of arrival 1981-1990” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.6. Germany Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1991_2000'
    );

Measure “Germany Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1991_2000'
    );

Measure “Germany Year of arrival 1991-2000” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_1991_2000',
      'denominator'
    );

Measure “Germany Year of arrival 1991-2000” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.7. Germany Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2001_2005'
    );

Measure “Germany Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2001_2005'
    );

Measure “Germany Year of arrival 2001-2005” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2001_2005',
      'denominator'
    );

Measure “Germany Year of arrival 2001-2005” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.8. Germany Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2006'
    );

Measure “Germany Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2006'
    );

Measure “Germany Year of arrival 2006” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2006',
      'denominator'
    );

Measure “Germany Year of arrival 2006” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.9. Germany Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2007'
    );

Measure “Germany Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2007'
    );

Measure “Germany Year of arrival 2007” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2007',
      'denominator'
    );

Measure “Germany Year of arrival 2007” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.10. Germany Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2008'
    );

Measure “Germany Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2008'
    );

Measure “Germany Year of arrival 2008” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2008',
      'denominator'
    );

Measure “Germany Year of arrival 2008” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.11. Germany Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2009'
    );

Measure “Germany Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2009'
    );

Measure “Germany Year of arrival 2009” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2009',
      'denominator'
    );

Measure “Germany Year of arrival 2009” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.12. Germany Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2010'
    );

Measure “Germany Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2010'
    );

Measure “Germany Year of arrival 2010” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2010',
      'denominator'
    );

Measure “Germany Year of arrival 2010” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.13. Germany Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2011'
    );

Measure “Germany Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2011'
    );

Measure “Germany Year of arrival 2011” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_2011',
      'denominator'
    );

Measure “Germany Year of arrival 2011” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.14. Germany Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_Before_1941'
    );

Measure “Germany Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_Before_1941'
    );

Measure “Germany Year of arrival Before 1941” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_Before_1941',
      'denominator'
    );

Measure “Germany Year of arrival Before 1941” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.10.15. Germany Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Germany Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_Yr_arrival_NS'
    );

Measure “Germany Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_Yr_arrival_NS'
    );

Measure “Germany Year of arrival not stated” percent of “Germany Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Germany_Yr_arrival_NS',
      'denominator'
    );

Measure “Germany Year of arrival not stated” percent of “Germany Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Germany_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Germany Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11. Greece TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_Tot'
    );

Measure “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_Tot'
    );

Measure “Greece Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_Tot',
      'denominator'
    );

Measure “Greece Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.1. Greece Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1941_1950'
    );

Measure “Greece Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1941_1950'
    );

Measure “Greece Year of arrival 1941-1950” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1941_1950',
      'denominator'
    );

Measure “Greece Year of arrival 1941-1950” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.2. Greece Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1951_1960'
    );

Measure “Greece Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1951_1960'
    );

Measure “Greece Year of arrival 1951-1960” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1951_1960',
      'denominator'
    );

Measure “Greece Year of arrival 1951-1960” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.3. Greece Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1961_1970'
    );

Measure “Greece Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1961_1970'
    );

Measure “Greece Year of arrival 1961-1970” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1961_1970',
      'denominator'
    );

Measure “Greece Year of arrival 1961-1970” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.4. Greece Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1971_1980'
    );

Measure “Greece Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1971_1980'
    );

Measure “Greece Year of arrival 1971-1980” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1971_1980',
      'denominator'
    );

Measure “Greece Year of arrival 1971-1980” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.5. Greece Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1981_1990'
    );

Measure “Greece Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1981_1990'
    );

Measure “Greece Year of arrival 1981-1990” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1981_1990',
      'denominator'
    );

Measure “Greece Year of arrival 1981-1990” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.6. Greece Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1991_2000'
    );

Measure “Greece Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1991_2000'
    );

Measure “Greece Year of arrival 1991-2000” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_1991_2000',
      'denominator'
    );

Measure “Greece Year of arrival 1991-2000” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.7. Greece Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2001_2005'
    );

Measure “Greece Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2001_2005'
    );

Measure “Greece Year of arrival 2001-2005” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2001_2005',
      'denominator'
    );

Measure “Greece Year of arrival 2001-2005” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.8. Greece Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2006'
    );

Measure “Greece Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2006'
    );

Measure “Greece Year of arrival 2006” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2006',
      'denominator'
    );

Measure “Greece Year of arrival 2006” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.9. Greece Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2007'
    );

Measure “Greece Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2007'
    );

Measure “Greece Year of arrival 2007” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2007',
      'denominator'
    );

Measure “Greece Year of arrival 2007” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.10. Greece Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2008'
    );

Measure “Greece Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2008'
    );

Measure “Greece Year of arrival 2008” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2008',
      'denominator'
    );

Measure “Greece Year of arrival 2008” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.11. Greece Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2009'
    );

Measure “Greece Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2009'
    );

Measure “Greece Year of arrival 2009” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2009',
      'denominator'
    );

Measure “Greece Year of arrival 2009” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.12. Greece Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2010'
    );

Measure “Greece Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2010'
    );

Measure “Greece Year of arrival 2010” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2010',
      'denominator'
    );

Measure “Greece Year of arrival 2010” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.13. Greece Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2011'
    );

Measure “Greece Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2011'
    );

Measure “Greece Year of arrival 2011” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_2011',
      'denominator'
    );

Measure “Greece Year of arrival 2011” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.14. Greece Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_Before_1941'
    );

Measure “Greece Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_Before_1941'
    );

Measure “Greece Year of arrival Before 1941” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_Before_1941',
      'denominator'
    );

Measure “Greece Year of arrival Before 1941” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.11.15. Greece Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Greece Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_Yr_arrival_NS'
    );

Measure “Greece Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_Yr_arrival_NS'
    );

Measure “Greece Year of arrival not stated” percent of “Greece Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Greece_Yr_arrival_NS',
      'denominator'
    );

Measure “Greece Year of arrival not stated” percent of “Greece Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Greece_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Greece Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12. Hong Kong SAR of China TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_Tot'
    );

Measure “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_Tot'
    );

Measure “Hong Kong SAR of China Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_Tot',
      'denominator'
    );

Measure “Hong Kong SAR of China Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.1. Hong Kong SAR of China Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1941_1950'
    );

Measure “Hong Kong SAR of China Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1941_1950'
    );

Measure “Hong Kong SAR of China Year of arrival 1941-1950” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1941_1950',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 1941-1950” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.2. Hong Kong SAR of China Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1951_1960'
    );

Measure “Hong Kong SAR of China Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1951_1960'
    );

Measure “Hong Kong SAR of China Year of arrival 1951-1960” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1951_1960',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 1951-1960” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.3. Hong Kong SAR of China Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1961_1970'
    );

Measure “Hong Kong SAR of China Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1961_1970'
    );

Measure “Hong Kong SAR of China Year of arrival 1961-1970” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1961_1970',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 1961-1970” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.4. Hong Kong SAR of China Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1971_1980'
    );

Measure “Hong Kong SAR of China Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1971_1980'
    );

Measure “Hong Kong SAR of China Year of arrival 1971-1980” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1971_1980',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 1971-1980” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.5. Hong Kong SAR of China Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1981_1990'
    );

Measure “Hong Kong SAR of China Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1981_1990'
    );

Measure “Hong Kong SAR of China Year of arrival 1981-1990” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1981_1990',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 1981-1990” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.6. Hong Kong SAR of China Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1991_2000'
    );

Measure “Hong Kong SAR of China Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1991_2000'
    );

Measure “Hong Kong SAR of China Year of arrival 1991-2000” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_1991_2000',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 1991-2000” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.7. Hong Kong SAR of China Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_2001_2005'
    );

Measure “Hong Kong SAR of China Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_2001_2005'
    );

Measure “Hong Kong SAR of China Year of arrival 2001-2005” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_2001_2005',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 2001-2005” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.8. Hong Kong SAR of China Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2006'
    );

Measure “Hong Kong SAR of China Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2006'
    );

Measure “Hong Kong SAR of China Year of arrival 2006” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2006',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 2006” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.9. Hong Kong SAR of China Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2007'
    );

Measure “Hong Kong SAR of China Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2007'
    );

Measure “Hong Kong SAR of China Year of arrival 2007” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2007',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 2007” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.10. Hong Kong SAR of China Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2008'
    );

Measure “Hong Kong SAR of China Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2008'
    );

Measure “Hong Kong SAR of China Year of arrival 2008” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2008',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 2008” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.11. Hong Kong SAR of China Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2009'
    );

Measure “Hong Kong SAR of China Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2009'
    );

Measure “Hong Kong SAR of China Year of arrival 2009” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2009',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 2009” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.12. Hong Kong SAR of China Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2010'
    );

Measure “Hong Kong SAR of China Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2010'
    );

Measure “Hong Kong SAR of China Year of arrival 2010” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2010',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 2010” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.13. Hong Kong SAR of China Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2011'
    );

Measure “Hong Kong SAR of China Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2011'
    );

Measure “Hong Kong SAR of China Year of arrival 2011” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hong_Kong_SAR_China_2011',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival 2011” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hong_Kong_SAR_China_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.14. Hong Kong SAR of China Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_Bfre_1941'
    );

Measure “Hong Kong SAR of China Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_Bfre_1941'
    );

Measure “Hong Kong SAR of China Year of arrival Before 1941” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_China_Bfre_1941',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival Before 1941” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_China_Bfre_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.12.15. Hong Kong SAR of China Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Hong Kong SAR of China Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_Chna_arrival_ns'
    );

Measure “Hong Kong SAR of China Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_Chna_arrival_ns'
    );

Measure “Hong Kong SAR of China Year of arrival not stated” percent of “Hong Kong SAR of China Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Hng_Kng_SAR_Chna_arrival_ns',
      'denominator'
    );

Measure “Hong Kong SAR of China Year of arrival not stated” percent of “Hong Kong SAR of China Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Hng_Kng_SAR_Chna_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Hong Kong SAR of China Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13. India TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_Tot'
    );

Measure “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_Tot'
    );

Measure “India Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_Tot',
      'denominator'
    );

Measure “India Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.1. India Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1941_1950'
    );

Measure “India Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1941_1950'
    );

Measure “India Year of arrival 1941-1950” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1941_1950',
      'denominator'
    );

Measure “India Year of arrival 1941-1950” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.2. India Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1951_1960'
    );

Measure “India Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1951_1960'
    );

Measure “India Year of arrival 1951-1960” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1951_1960',
      'denominator'
    );

Measure “India Year of arrival 1951-1960” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.3. India Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1961_1970'
    );

Measure “India Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1961_1970'
    );

Measure “India Year of arrival 1961-1970” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1961_1970',
      'denominator'
    );

Measure “India Year of arrival 1961-1970” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.4. India Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1971_1980'
    );

Measure “India Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1971_1980'
    );

Measure “India Year of arrival 1971-1980” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1971_1980',
      'denominator'
    );

Measure “India Year of arrival 1971-1980” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.5. India Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1981_1990'
    );

Measure “India Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1981_1990'
    );

Measure “India Year of arrival 1981-1990” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1981_1990',
      'denominator'
    );

Measure “India Year of arrival 1981-1990” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.6. India Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1991_2000'
    );

Measure “India Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1991_2000'
    );

Measure “India Year of arrival 1991-2000” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_1991_2000',
      'denominator'
    );

Measure “India Year of arrival 1991-2000” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.7. India Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2001_2005'
    );

Measure “India Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2001_2005'
    );

Measure “India Year of arrival 2001-2005” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2001_2005',
      'denominator'
    );

Measure “India Year of arrival 2001-2005” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.8. India Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2006'
    );

Measure “India Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2006'
    );

Measure “India Year of arrival 2006” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2006',
      'denominator'
    );

Measure “India Year of arrival 2006” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.9. India Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2007'
    );

Measure “India Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2007'
    );

Measure “India Year of arrival 2007” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2007',
      'denominator'
    );

Measure “India Year of arrival 2007” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.10. India Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2008'
    );

Measure “India Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2008'
    );

Measure “India Year of arrival 2008” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2008',
      'denominator'
    );

Measure “India Year of arrival 2008” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.11. India Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2009'
    );

Measure “India Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2009'
    );

Measure “India Year of arrival 2009” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2009',
      'denominator'
    );

Measure “India Year of arrival 2009” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.12. India Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2010'
    );

Measure “India Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2010'
    );

Measure “India Year of arrival 2010” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2010',
      'denominator'
    );

Measure “India Year of arrival 2010” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.13. India Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2011'
    );

Measure “India Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2011'
    );

Measure “India Year of arrival 2011” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_2011',
      'denominator'
    );

Measure “India Year of arrival 2011” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.14. India Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_Before_1941'
    );

Measure “India Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_Before_1941'
    );

Measure “India Year of arrival Before 1941” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_Before_1941',
      'denominator'
    );

Measure “India Year of arrival Before 1941” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.13.15. India Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “India Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_Yr_arrival_NS'
    );

Measure “India Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_Yr_arrival_NS'
    );

Measure “India Year of arrival not stated” percent of “India Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_India_Yr_arrival_NS',
      'denominator'
    );

Measure “India Year of arrival not stated” percent of “India Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_India_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:India Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14. Indonesia TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_Tot'
    );

Measure “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_Tot'
    );

Measure “Indonesia Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_Tot',
      'denominator'
    );

Measure “Indonesia Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.1. Indonesia Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1941_1950'
    );

Measure “Indonesia Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1941_1950'
    );

Measure “Indonesia Year of arrival 1941-1950” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1941_1950',
      'denominator'
    );

Measure “Indonesia Year of arrival 1941-1950” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.2. Indonesia Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1951_1960'
    );

Measure “Indonesia Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1951_1960'
    );

Measure “Indonesia Year of arrival 1951-1960” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1951_1960',
      'denominator'
    );

Measure “Indonesia Year of arrival 1951-1960” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.3. Indonesia Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1961_1970'
    );

Measure “Indonesia Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1961_1970'
    );

Measure “Indonesia Year of arrival 1961-1970” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1961_1970',
      'denominator'
    );

Measure “Indonesia Year of arrival 1961-1970” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.4. Indonesia Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1971_1980'
    );

Measure “Indonesia Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1971_1980'
    );

Measure “Indonesia Year of arrival 1971-1980” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1971_1980',
      'denominator'
    );

Measure “Indonesia Year of arrival 1971-1980” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.5. Indonesia Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1981_1990'
    );

Measure “Indonesia Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1981_1990'
    );

Measure “Indonesia Year of arrival 1981-1990” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1981_1990',
      'denominator'
    );

Measure “Indonesia Year of arrival 1981-1990” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.6. Indonesia Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1991_2000'
    );

Measure “Indonesia Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1991_2000'
    );

Measure “Indonesia Year of arrival 1991-2000” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_1991_2000',
      'denominator'
    );

Measure “Indonesia Year of arrival 1991-2000” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.7. Indonesia Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_2001_2005'
    );

Measure “Indonesia Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_2001_2005'
    );

Measure “Indonesia Year of arrival 2001-2005” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_2001_2005',
      'denominator'
    );

Measure “Indonesia Year of arrival 2001-2005” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.8. Indonesia Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2006'
    );

Measure “Indonesia Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2006'
    );

Measure “Indonesia Year of arrival 2006” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2006',
      'denominator'
    );

Measure “Indonesia Year of arrival 2006” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.9. Indonesia Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2007'
    );

Measure “Indonesia Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2007'
    );

Measure “Indonesia Year of arrival 2007” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2007',
      'denominator'
    );

Measure “Indonesia Year of arrival 2007” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.10. Indonesia Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2008'
    );

Measure “Indonesia Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2008'
    );

Measure “Indonesia Year of arrival 2008” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2008',
      'denominator'
    );

Measure “Indonesia Year of arrival 2008” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.11. Indonesia Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2009'
    );

Measure “Indonesia Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2009'
    );

Measure “Indonesia Year of arrival 2009” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2009',
      'denominator'
    );

Measure “Indonesia Year of arrival 2009” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.12. Indonesia Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2010'
    );

Measure “Indonesia Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2010'
    );

Measure “Indonesia Year of arrival 2010” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2010',
      'denominator'
    );

Measure “Indonesia Year of arrival 2010” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.13. Indonesia Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2011'
    );

Measure “Indonesia Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2011'
    );

Measure “Indonesia Year of arrival 2011” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_2011',
      'denominator'
    );

Measure “Indonesia Year of arrival 2011” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.14. Indonesia Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_Before_1941'
    );

Measure “Indonesia Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_Before_1941'
    );

Measure “Indonesia Year of arrival Before 1941” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10A_Indonesia_Before_1941',
      'denominator'
    );

Measure “Indonesia Year of arrival Before 1941” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10A_Indonesia_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.14.15. Indonesia Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Indonesia Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_Yr_arrival_ns'
    );

Measure “Indonesia Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_Yr_arrival_ns'
    );

Measure “Indonesia Year of arrival not stated” percent of “Indonesia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Indonesia_Yr_arrival_ns',
      'denominator'
    );

Measure “Indonesia Year of arrival not stated” percent of “Indonesia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Indonesia_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Indonesia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15. Iraq TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_Tot'
    );

Measure “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_Tot'
    );

Measure “Iraq Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_Tot',
      'denominator'
    );

Measure “Iraq Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.1. Iraq Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1941_1950'
    );

Measure “Iraq Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1941_1950'
    );

Measure “Iraq Year of arrival 1941-1950” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1941_1950',
      'denominator'
    );

Measure “Iraq Year of arrival 1941-1950” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.2. Iraq Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1951_1960'
    );

Measure “Iraq Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1951_1960'
    );

Measure “Iraq Year of arrival 1951-1960” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1951_1960',
      'denominator'
    );

Measure “Iraq Year of arrival 1951-1960” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.3. Iraq Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1961_1970'
    );

Measure “Iraq Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1961_1970'
    );

Measure “Iraq Year of arrival 1961-1970” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1961_1970',
      'denominator'
    );

Measure “Iraq Year of arrival 1961-1970” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.4. Iraq Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1971_1980'
    );

Measure “Iraq Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1971_1980'
    );

Measure “Iraq Year of arrival 1971-1980” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1971_1980',
      'denominator'
    );

Measure “Iraq Year of arrival 1971-1980” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.5. Iraq Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1981_1990'
    );

Measure “Iraq Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1981_1990'
    );

Measure “Iraq Year of arrival 1981-1990” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1981_1990',
      'denominator'
    );

Measure “Iraq Year of arrival 1981-1990” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.6. Iraq Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1991_2000'
    );

Measure “Iraq Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1991_2000'
    );

Measure “Iraq Year of arrival 1991-2000” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_1991_2000',
      'denominator'
    );

Measure “Iraq Year of arrival 1991-2000” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.7. Iraq Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2001_2005'
    );

Measure “Iraq Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2001_2005'
    );

Measure “Iraq Year of arrival 2001-2005” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2001_2005',
      'denominator'
    );

Measure “Iraq Year of arrival 2001-2005” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.8. Iraq Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2006'
    );

Measure “Iraq Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2006'
    );

Measure “Iraq Year of arrival 2006” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2006',
      'denominator'
    );

Measure “Iraq Year of arrival 2006” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.9. Iraq Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2007'
    );

Measure “Iraq Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2007'
    );

Measure “Iraq Year of arrival 2007” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2007',
      'denominator'
    );

Measure “Iraq Year of arrival 2007” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.10. Iraq Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2008'
    );

Measure “Iraq Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2008'
    );

Measure “Iraq Year of arrival 2008” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2008',
      'denominator'
    );

Measure “Iraq Year of arrival 2008” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.11. Iraq Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2009'
    );

Measure “Iraq Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2009'
    );

Measure “Iraq Year of arrival 2009” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2009',
      'denominator'
    );

Measure “Iraq Year of arrival 2009” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.12. Iraq Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2010'
    );

Measure “Iraq Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2010'
    );

Measure “Iraq Year of arrival 2010” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2010',
      'denominator'
    );

Measure “Iraq Year of arrival 2010” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.13. Iraq Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2011'
    );

Measure “Iraq Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2011'
    );

Measure “Iraq Year of arrival 2011” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_2011',
      'denominator'
    );

Measure “Iraq Year of arrival 2011” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.14. Iraq Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_Before_1941'
    );

Measure “Iraq Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_Before_1941'
    );

Measure “Iraq Year of arrival Before 1941” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_Before_1941',
      'denominator'
    );

Measure “Iraq Year of arrival Before 1941” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.15.15. Iraq Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Iraq Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_Yr_arrival_NS'
    );

Measure “Iraq Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_Yr_arrival_NS'
    );

Measure “Iraq Year of arrival not stated” percent of “Iraq Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Iraq_Yr_arrival_NS',
      'denominator'
    );

Measure “Iraq Year of arrival not stated” percent of “Iraq Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Iraq_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Iraq Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16. Ireland TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_Tot'
    );

Measure “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_Tot'
    );

Measure “Ireland Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_Tot',
      'denominator'
    );

Measure “Ireland Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.1. Ireland Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1941_1950'
    );

Measure “Ireland Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1941_1950'
    );

Measure “Ireland Year of arrival 1941-1950” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1941_1950',
      'denominator'
    );

Measure “Ireland Year of arrival 1941-1950” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.2. Ireland Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1951_1960'
    );

Measure “Ireland Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1951_1960'
    );

Measure “Ireland Year of arrival 1951-1960” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1951_1960',
      'denominator'
    );

Measure “Ireland Year of arrival 1951-1960” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.3. Ireland Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1961_1970'
    );

Measure “Ireland Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1961_1970'
    );

Measure “Ireland Year of arrival 1961-1970” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1961_1970',
      'denominator'
    );

Measure “Ireland Year of arrival 1961-1970” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.4. Ireland Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1971_1980'
    );

Measure “Ireland Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1971_1980'
    );

Measure “Ireland Year of arrival 1971-1980” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1971_1980',
      'denominator'
    );

Measure “Ireland Year of arrival 1971-1980” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.5. Ireland Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1981_1990'
    );

Measure “Ireland Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1981_1990'
    );

Measure “Ireland Year of arrival 1981-1990” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1981_1990',
      'denominator'
    );

Measure “Ireland Year of arrival 1981-1990” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.6. Ireland Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1991_2000'
    );

Measure “Ireland Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1991_2000'
    );

Measure “Ireland Year of arrival 1991-2000” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_1991_2000',
      'denominator'
    );

Measure “Ireland Year of arrival 1991-2000” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.7. Ireland Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2001_2005'
    );

Measure “Ireland Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2001_2005'
    );

Measure “Ireland Year of arrival 2001-2005” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2001_2005',
      'denominator'
    );

Measure “Ireland Year of arrival 2001-2005” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.8. Ireland Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2006'
    );

Measure “Ireland Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2006'
    );

Measure “Ireland Year of arrival 2006” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2006',
      'denominator'
    );

Measure “Ireland Year of arrival 2006” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.9. Ireland Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2007'
    );

Measure “Ireland Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2007'
    );

Measure “Ireland Year of arrival 2007” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2007',
      'denominator'
    );

Measure “Ireland Year of arrival 2007” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.10. Ireland Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2008'
    );

Measure “Ireland Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2008'
    );

Measure “Ireland Year of arrival 2008” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2008',
      'denominator'
    );

Measure “Ireland Year of arrival 2008” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.11. Ireland Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2009'
    );

Measure “Ireland Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2009'
    );

Measure “Ireland Year of arrival 2009” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2009',
      'denominator'
    );

Measure “Ireland Year of arrival 2009” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.12. Ireland Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2010'
    );

Measure “Ireland Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2010'
    );

Measure “Ireland Year of arrival 2010” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2010',
      'denominator'
    );

Measure “Ireland Year of arrival 2010” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.13. Ireland Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2011'
    );

Measure “Ireland Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2011'
    );

Measure “Ireland Year of arrival 2011” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_2011',
      'denominator'
    );

Measure “Ireland Year of arrival 2011” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.14. Ireland Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_Before_1941'
    );

Measure “Ireland Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_Before_1941'
    );

Measure “Ireland Year of arrival Before 1941” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_Before_1941',
      'denominator'
    );

Measure “Ireland Year of arrival Before 1941” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.16.15. Ireland Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Ireland Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_Yr_arrival_NS'
    );

Measure “Ireland Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_Yr_arrival_NS'
    );

Measure “Ireland Year of arrival not stated” percent of “Ireland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Ireland_Yr_arrival_NS',
      'denominator'
    );

Measure “Ireland Year of arrival not stated” percent of “Ireland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Ireland_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Ireland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17. Italy TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_Tot'
    );

Measure “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_Tot'
    );

Measure “Italy Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_Tot',
      'denominator'
    );

Measure “Italy Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.1. Italy Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1941_1950'
    );

Measure “Italy Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1941_1950'
    );

Measure “Italy Year of arrival 1941-1950” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1941_1950',
      'denominator'
    );

Measure “Italy Year of arrival 1941-1950” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.2. Italy Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1951_1960'
    );

Measure “Italy Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1951_1960'
    );

Measure “Italy Year of arrival 1951-1960” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1951_1960',
      'denominator'
    );

Measure “Italy Year of arrival 1951-1960” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.3. Italy Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1961_1970'
    );

Measure “Italy Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1961_1970'
    );

Measure “Italy Year of arrival 1961-1970” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1961_1970',
      'denominator'
    );

Measure “Italy Year of arrival 1961-1970” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.4. Italy Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1971_1980'
    );

Measure “Italy Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1971_1980'
    );

Measure “Italy Year of arrival 1971-1980” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1971_1980',
      'denominator'
    );

Measure “Italy Year of arrival 1971-1980” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.5. Italy Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1981_1990'
    );

Measure “Italy Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1981_1990'
    );

Measure “Italy Year of arrival 1981-1990” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1981_1990',
      'denominator'
    );

Measure “Italy Year of arrival 1981-1990” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.6. Italy Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1991_2000'
    );

Measure “Italy Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1991_2000'
    );

Measure “Italy Year of arrival 1991-2000” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_1991_2000',
      'denominator'
    );

Measure “Italy Year of arrival 1991-2000” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.7. Italy Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2001_2005'
    );

Measure “Italy Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2001_2005'
    );

Measure “Italy Year of arrival 2001-2005” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2001_2005',
      'denominator'
    );

Measure “Italy Year of arrival 2001-2005” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.8. Italy Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2006'
    );

Measure “Italy Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2006'
    );

Measure “Italy Year of arrival 2006” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2006',
      'denominator'
    );

Measure “Italy Year of arrival 2006” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.9. Italy Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2007'
    );

Measure “Italy Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2007'
    );

Measure “Italy Year of arrival 2007” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2007',
      'denominator'
    );

Measure “Italy Year of arrival 2007” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.10. Italy Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2008'
    );

Measure “Italy Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2008'
    );

Measure “Italy Year of arrival 2008” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2008',
      'denominator'
    );

Measure “Italy Year of arrival 2008” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.11. Italy Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2009'
    );

Measure “Italy Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2009'
    );

Measure “Italy Year of arrival 2009” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2009',
      'denominator'
    );

Measure “Italy Year of arrival 2009” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.12. Italy Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2010'
    );

Measure “Italy Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2010'
    );

Measure “Italy Year of arrival 2010” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2010',
      'denominator'
    );

Measure “Italy Year of arrival 2010” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.13. Italy Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2011'
    );

Measure “Italy Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2011'
    );

Measure “Italy Year of arrival 2011” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_2011',
      'denominator'
    );

Measure “Italy Year of arrival 2011” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.14. Italy Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_Before_1941'
    );

Measure “Italy Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_Before_1941'
    );

Measure “Italy Year of arrival Before 1941” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_Before_1941',
      'denominator'
    );

Measure “Italy Year of arrival Before 1941” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.17.15. Italy Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Italy Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_Yr_arrival_NS'
    );

Measure “Italy Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_Yr_arrival_NS'
    );

Measure “Italy Year of arrival not stated” percent of “Italy Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Italy_Yr_arrival_NS',
      'denominator'
    );

Measure “Italy Year of arrival not stated” percent of “Italy Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Italy_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Italy Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18. Japan TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_Tot'
    );

Measure “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_Tot'
    );

Measure “Japan Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_Tot',
      'denominator'
    );

Measure “Japan Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.1. Japan Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1941_1950'
    );

Measure “Japan Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1941_1950'
    );

Measure “Japan Year of arrival 1941-1950” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1941_1950',
      'denominator'
    );

Measure “Japan Year of arrival 1941-1950” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.2. Japan Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1951_1960'
    );

Measure “Japan Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1951_1960'
    );

Measure “Japan Year of arrival 1951-1960” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1951_1960',
      'denominator'
    );

Measure “Japan Year of arrival 1951-1960” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.3. Japan Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1961_1970'
    );

Measure “Japan Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1961_1970'
    );

Measure “Japan Year of arrival 1961-1970” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1961_1970',
      'denominator'
    );

Measure “Japan Year of arrival 1961-1970” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.4. Japan Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1971_1980'
    );

Measure “Japan Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1971_1980'
    );

Measure “Japan Year of arrival 1971-1980” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1971_1980',
      'denominator'
    );

Measure “Japan Year of arrival 1971-1980” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.5. Japan Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1981_1990'
    );

Measure “Japan Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1981_1990'
    );

Measure “Japan Year of arrival 1981-1990” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1981_1990',
      'denominator'
    );

Measure “Japan Year of arrival 1981-1990” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.6. Japan Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1991_2000'
    );

Measure “Japan Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1991_2000'
    );

Measure “Japan Year of arrival 1991-2000” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_1991_2000',
      'denominator'
    );

Measure “Japan Year of arrival 1991-2000” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.7. Japan Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2001_2005'
    );

Measure “Japan Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2001_2005'
    );

Measure “Japan Year of arrival 2001-2005” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2001_2005',
      'denominator'
    );

Measure “Japan Year of arrival 2001-2005” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.8. Japan Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2006'
    );

Measure “Japan Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2006'
    );

Measure “Japan Year of arrival 2006” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2006',
      'denominator'
    );

Measure “Japan Year of arrival 2006” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.9. Japan Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2007'
    );

Measure “Japan Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2007'
    );

Measure “Japan Year of arrival 2007” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2007',
      'denominator'
    );

Measure “Japan Year of arrival 2007” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.10. Japan Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2008'
    );

Measure “Japan Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2008'
    );

Measure “Japan Year of arrival 2008” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2008',
      'denominator'
    );

Measure “Japan Year of arrival 2008” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.11. Japan Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2009'
    );

Measure “Japan Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2009'
    );

Measure “Japan Year of arrival 2009” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2009',
      'denominator'
    );

Measure “Japan Year of arrival 2009” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.12. Japan Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2010'
    );

Measure “Japan Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2010'
    );

Measure “Japan Year of arrival 2010” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2010',
      'denominator'
    );

Measure “Japan Year of arrival 2010” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.13. Japan Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2011'
    );

Measure “Japan Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2011'
    );

Measure “Japan Year of arrival 2011” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_2011',
      'denominator'
    );

Measure “Japan Year of arrival 2011” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.14. Japan Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_Before_1941'
    );

Measure “Japan Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_Before_1941'
    );

Measure “Japan Year of arrival Before 1941” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_Before_1941',
      'denominator'
    );

Measure “Japan Year of arrival Before 1941” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.18.15. Japan Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Japan Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_Yr_arrival_NS'
    );

Measure “Japan Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_Yr_arrival_NS'
    );

Measure “Japan Year of arrival not stated” percent of “Japan Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Japan_Yr_arrival_NS',
      'denominator'
    );

Measure “Japan Year of arrival not stated” percent of “Japan Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Japan_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Japan Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19. Korea Republic of South TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_Tot'
    );

Measure “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_Tot'
    );

Measure “Korea Republic of South Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_Tot',
      'denominator'
    );

Measure “Korea Republic of South Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.1. Korea Republic of South Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1941_1950'
    );

Measure “Korea Republic of South Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1941_1950'
    );

Measure “Korea Republic of South Year of arrival 1941-1950” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1941_1950',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 1941-1950” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.2. Korea Republic of South Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1951_1960'
    );

Measure “Korea Republic of South Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1951_1960'
    );

Measure “Korea Republic of South Year of arrival 1951-1960” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1951_1960',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 1951-1960” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.3. Korea Republic of South Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1961_1970'
    );

Measure “Korea Republic of South Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1961_1970'
    );

Measure “Korea Republic of South Year of arrival 1961-1970” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1961_1970',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 1961-1970” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.4. Korea Republic of South Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1971_1980'
    );

Measure “Korea Republic of South Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1971_1980'
    );

Measure “Korea Republic of South Year of arrival 1971-1980” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1971_1980',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 1971-1980” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.5. Korea Republic of South Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1981_1990'
    );

Measure “Korea Republic of South Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1981_1990'
    );

Measure “Korea Republic of South Year of arrival 1981-1990” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1981_1990',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 1981-1990” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.6. Korea Republic of South Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1991_2000'
    );

Measure “Korea Republic of South Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1991_2000'
    );

Measure “Korea Republic of South Year of arrival 1991-2000” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_1991_2000',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 1991-2000” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.7. Korea Republic of South Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_2001_2005'
    );

Measure “Korea Republic of South Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_2001_2005'
    );

Measure “Korea Republic of South Year of arrival 2001-2005” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_2001_2005',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 2001-2005” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.8. Korea Republic of South Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2006'
    );

Measure “Korea Republic of South Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2006'
    );

Measure “Korea Republic of South Year of arrival 2006” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2006',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 2006” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.9. Korea Republic of South Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2007'
    );

Measure “Korea Republic of South Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2007'
    );

Measure “Korea Republic of South Year of arrival 2007” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2007',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 2007” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.10. Korea Republic of South Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2008'
    );

Measure “Korea Republic of South Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2008'
    );

Measure “Korea Republic of South Year of arrival 2008” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2008',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 2008” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.11. Korea Republic of South Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2009'
    );

Measure “Korea Republic of South Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2009'
    );

Measure “Korea Republic of South Year of arrival 2009” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2009',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 2009” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.12. Korea Republic of South Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2010'
    );

Measure “Korea Republic of South Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2010'
    );

Measure “Korea Republic of South Year of arrival 2010” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2010',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 2010” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.13. Korea Republic of South Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2011'
    );

Measure “Korea Republic of South Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2011'
    );

Measure “Korea Republic of South Year of arrival 2011” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Republic_South_2011',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival 2011” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Republic_South_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.14. Korea Republic of South Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_Before_1941'
    );

Measure “Korea Republic of South Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_Before_1941'
    );

Measure “Korea Republic of South Year of arrival Before 1941” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Rep_Sth_Before_1941',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival Before 1941” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Rep_Sth_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.19.15. Korea Republic of South Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Korea Republic of South Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Repub_Sth_arrival_ns'
    );

Measure “Korea Republic of South Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Repub_Sth_arrival_ns'
    );

Measure “Korea Republic of South Year of arrival not stated” percent of “Korea Republic of South Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Korea_Repub_Sth_arrival_ns',
      'denominator'
    );

Measure “Korea Republic of South Year of arrival not stated” percent of “Korea Republic of South Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Korea_Repub_Sth_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Korea Republic of South Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20. Lebanon TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_Tot'
    );

Measure “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_Tot'
    );

Measure “Lebanon Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_Tot',
      'denominator'
    );

Measure “Lebanon Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.1. Lebanon Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1941_1950'
    );

Measure “Lebanon Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1941_1950'
    );

Measure “Lebanon Year of arrival 1941-1950” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1941_1950',
      'denominator'
    );

Measure “Lebanon Year of arrival 1941-1950” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.2. Lebanon Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1951_1960'
    );

Measure “Lebanon Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1951_1960'
    );

Measure “Lebanon Year of arrival 1951-1960” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1951_1960',
      'denominator'
    );

Measure “Lebanon Year of arrival 1951-1960” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.3. Lebanon Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1961_1970'
    );

Measure “Lebanon Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1961_1970'
    );

Measure “Lebanon Year of arrival 1961-1970” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1961_1970',
      'denominator'
    );

Measure “Lebanon Year of arrival 1961-1970” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.4. Lebanon Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1971_1980'
    );

Measure “Lebanon Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1971_1980'
    );

Measure “Lebanon Year of arrival 1971-1980” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1971_1980',
      'denominator'
    );

Measure “Lebanon Year of arrival 1971-1980” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.5. Lebanon Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1981_1990'
    );

Measure “Lebanon Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1981_1990'
    );

Measure “Lebanon Year of arrival 1981-1990” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1981_1990',
      'denominator'
    );

Measure “Lebanon Year of arrival 1981-1990” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.6. Lebanon Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1991_2000'
    );

Measure “Lebanon Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1991_2000'
    );

Measure “Lebanon Year of arrival 1991-2000” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_1991_2000',
      'denominator'
    );

Measure “Lebanon Year of arrival 1991-2000” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.7. Lebanon Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2001_2005'
    );

Measure “Lebanon Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2001_2005'
    );

Measure “Lebanon Year of arrival 2001-2005” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2001_2005',
      'denominator'
    );

Measure “Lebanon Year of arrival 2001-2005” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.8. Lebanon Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2006'
    );

Measure “Lebanon Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2006'
    );

Measure “Lebanon Year of arrival 2006” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2006',
      'denominator'
    );

Measure “Lebanon Year of arrival 2006” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.9. Lebanon Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2007'
    );

Measure “Lebanon Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2007'
    );

Measure “Lebanon Year of arrival 2007” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2007',
      'denominator'
    );

Measure “Lebanon Year of arrival 2007” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.10. Lebanon Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2008'
    );

Measure “Lebanon Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2008'
    );

Measure “Lebanon Year of arrival 2008” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2008',
      'denominator'
    );

Measure “Lebanon Year of arrival 2008” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.11. Lebanon Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2009'
    );

Measure “Lebanon Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2009'
    );

Measure “Lebanon Year of arrival 2009” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2009',
      'denominator'
    );

Measure “Lebanon Year of arrival 2009” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.12. Lebanon Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2010'
    );

Measure “Lebanon Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2010'
    );

Measure “Lebanon Year of arrival 2010” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2010',
      'denominator'
    );

Measure “Lebanon Year of arrival 2010” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.13. Lebanon Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2011'
    );

Measure “Lebanon Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2011'
    );

Measure “Lebanon Year of arrival 2011” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_2011',
      'denominator'
    );

Measure “Lebanon Year of arrival 2011” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.14. Lebanon Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_Before_1941'
    );

Measure “Lebanon Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_Before_1941'
    );

Measure “Lebanon Year of arrival Before 1941” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_Before_1941',
      'denominator'
    );

Measure “Lebanon Year of arrival Before 1941” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.20.15. Lebanon Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Lebanon Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_Yr_arrival_NS'
    );

Measure “Lebanon Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_Yr_arrival_NS'
    );

Measure “Lebanon Year of arrival not stated” percent of “Lebanon Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Lebanon_Yr_arrival_NS',
      'denominator'
    );

Measure “Lebanon Year of arrival not stated” percent of “Lebanon Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Lebanon_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Lebanon Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21. Malaysia TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_Tot'
    );

Measure “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_Tot'
    );

Measure “Malaysia Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_Tot',
      'denominator'
    );

Measure “Malaysia Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.1. Malaysia Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1941_1950'
    );

Measure “Malaysia Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1941_1950'
    );

Measure “Malaysia Year of arrival 1941-1950” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1941_1950',
      'denominator'
    );

Measure “Malaysia Year of arrival 1941-1950” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.2. Malaysia Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1951_1960'
    );

Measure “Malaysia Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1951_1960'
    );

Measure “Malaysia Year of arrival 1951-1960” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1951_1960',
      'denominator'
    );

Measure “Malaysia Year of arrival 1951-1960” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.3. Malaysia Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1961_1970'
    );

Measure “Malaysia Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1961_1970'
    );

Measure “Malaysia Year of arrival 1961-1970” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1961_1970',
      'denominator'
    );

Measure “Malaysia Year of arrival 1961-1970” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.4. Malaysia Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1971_1980'
    );

Measure “Malaysia Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1971_1980'
    );

Measure “Malaysia Year of arrival 1971-1980” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1971_1980',
      'denominator'
    );

Measure “Malaysia Year of arrival 1971-1980” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.5. Malaysia Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1981_1990'
    );

Measure “Malaysia Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1981_1990'
    );

Measure “Malaysia Year of arrival 1981-1990” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1981_1990',
      'denominator'
    );

Measure “Malaysia Year of arrival 1981-1990” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.6. Malaysia Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1991_2000'
    );

Measure “Malaysia Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1991_2000'
    );

Measure “Malaysia Year of arrival 1991-2000” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_1991_2000',
      'denominator'
    );

Measure “Malaysia Year of arrival 1991-2000” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.7. Malaysia Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2001_2005'
    );

Measure “Malaysia Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2001_2005'
    );

Measure “Malaysia Year of arrival 2001-2005” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2001_2005',
      'denominator'
    );

Measure “Malaysia Year of arrival 2001-2005” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.8. Malaysia Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2006'
    );

Measure “Malaysia Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2006'
    );

Measure “Malaysia Year of arrival 2006” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2006',
      'denominator'
    );

Measure “Malaysia Year of arrival 2006” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.9. Malaysia Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2007'
    );

Measure “Malaysia Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2007'
    );

Measure “Malaysia Year of arrival 2007” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2007',
      'denominator'
    );

Measure “Malaysia Year of arrival 2007” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.10. Malaysia Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2008'
    );

Measure “Malaysia Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2008'
    );

Measure “Malaysia Year of arrival 2008” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2008',
      'denominator'
    );

Measure “Malaysia Year of arrival 2008” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.11. Malaysia Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2009'
    );

Measure “Malaysia Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2009'
    );

Measure “Malaysia Year of arrival 2009” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2009',
      'denominator'
    );

Measure “Malaysia Year of arrival 2009” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.12. Malaysia Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2010'
    );

Measure “Malaysia Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2010'
    );

Measure “Malaysia Year of arrival 2010” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2010',
      'denominator'
    );

Measure “Malaysia Year of arrival 2010” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.13. Malaysia Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2011'
    );

Measure “Malaysia Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2011'
    );

Measure “Malaysia Year of arrival 2011” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_2011',
      'denominator'
    );

Measure “Malaysia Year of arrival 2011” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.14. Malaysia Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_Before_1941'
    );

Measure “Malaysia Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_Before_1941'
    );

Measure “Malaysia Year of arrival Before 1941” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_Before_1941',
      'denominator'
    );

Measure “Malaysia Year of arrival Before 1941” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.21.15. Malaysia Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malaysia Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_Yr_arrival_ns'
    );

Measure “Malaysia Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_Yr_arrival_ns'
    );

Measure “Malaysia Year of arrival not stated” percent of “Malaysia Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malaysia_Yr_arrival_ns',
      'denominator'
    );

Measure “Malaysia Year of arrival not stated” percent of “Malaysia Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malaysia_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malaysia Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22. Malta TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_Tot'
    );

Measure “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_Tot'
    );

Measure “Malta Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_Tot',
      'denominator'
    );

Measure “Malta Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.1. Malta Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1941_1950'
    );

Measure “Malta Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1941_1950'
    );

Measure “Malta Year of arrival 1941-1950” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1941_1950',
      'denominator'
    );

Measure “Malta Year of arrival 1941-1950” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.2. Malta Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1951_1960'
    );

Measure “Malta Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1951_1960'
    );

Measure “Malta Year of arrival 1951-1960” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1951_1960',
      'denominator'
    );

Measure “Malta Year of arrival 1951-1960” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.3. Malta Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1961_1970'
    );

Measure “Malta Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1961_1970'
    );

Measure “Malta Year of arrival 1961-1970” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1961_1970',
      'denominator'
    );

Measure “Malta Year of arrival 1961-1970” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.4. Malta Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1971_1980'
    );

Measure “Malta Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1971_1980'
    );

Measure “Malta Year of arrival 1971-1980” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1971_1980',
      'denominator'
    );

Measure “Malta Year of arrival 1971-1980” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.5. Malta Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1981_1990'
    );

Measure “Malta Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1981_1990'
    );

Measure “Malta Year of arrival 1981-1990” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1981_1990',
      'denominator'
    );

Measure “Malta Year of arrival 1981-1990” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.6. Malta Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1991_2000'
    );

Measure “Malta Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1991_2000'
    );

Measure “Malta Year of arrival 1991-2000” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_1991_2000',
      'denominator'
    );

Measure “Malta Year of arrival 1991-2000” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.7. Malta Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2001_2005'
    );

Measure “Malta Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2001_2005'
    );

Measure “Malta Year of arrival 2001-2005” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2001_2005',
      'denominator'
    );

Measure “Malta Year of arrival 2001-2005” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.8. Malta Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2006'
    );

Measure “Malta Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2006'
    );

Measure “Malta Year of arrival 2006” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2006',
      'denominator'
    );

Measure “Malta Year of arrival 2006” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.9. Malta Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2007'
    );

Measure “Malta Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2007'
    );

Measure “Malta Year of arrival 2007” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2007',
      'denominator'
    );

Measure “Malta Year of arrival 2007” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.10. Malta Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2008'
    );

Measure “Malta Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2008'
    );

Measure “Malta Year of arrival 2008” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2008',
      'denominator'
    );

Measure “Malta Year of arrival 2008” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.11. Malta Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2009'
    );

Measure “Malta Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2009'
    );

Measure “Malta Year of arrival 2009” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2009',
      'denominator'
    );

Measure “Malta Year of arrival 2009” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.12. Malta Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2010'
    );

Measure “Malta Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2010'
    );

Measure “Malta Year of arrival 2010” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2010',
      'denominator'
    );

Measure “Malta Year of arrival 2010” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.13. Malta Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2011'
    );

Measure “Malta Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2011'
    );

Measure “Malta Year of arrival 2011” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_2011',
      'denominator'
    );

Measure “Malta Year of arrival 2011” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.14. Malta Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_Before_1941'
    );

Measure “Malta Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_Before_1941'
    );

Measure “Malta Year of arrival Before 1941” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_Before_1941',
      'denominator'
    );

Measure “Malta Year of arrival Before 1941” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.22.15. Malta Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Malta Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_Yr_arrival_NS'
    );

Measure “Malta Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_Yr_arrival_NS'
    );

Measure “Malta Year of arrival not stated” percent of “Malta Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Malta_Yr_arrival_NS',
      'denominator'
    );

Measure “Malta Year of arrival not stated” percent of “Malta Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Malta_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Malta Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23. Netherlands TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_Tot'
    );

Measure “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_Tot'
    );

Measure “Netherlands Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_Tot',
      'denominator'
    );

Measure “Netherlands Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.1. Netherlands Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1941_1950'
    );

Measure “Netherlands Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1941_1950'
    );

Measure “Netherlands Year of arrival 1941-1950” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1941_1950',
      'denominator'
    );

Measure “Netherlands Year of arrival 1941-1950” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.2. Netherlands Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1951_1960'
    );

Measure “Netherlands Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1951_1960'
    );

Measure “Netherlands Year of arrival 1951-1960” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1951_1960',
      'denominator'
    );

Measure “Netherlands Year of arrival 1951-1960” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.3. Netherlands Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1961_1970'
    );

Measure “Netherlands Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1961_1970'
    );

Measure “Netherlands Year of arrival 1961-1970” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1961_1970',
      'denominator'
    );

Measure “Netherlands Year of arrival 1961-1970” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.4. Netherlands Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1971_1980'
    );

Measure “Netherlands Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1971_1980'
    );

Measure “Netherlands Year of arrival 1971-1980” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1971_1980',
      'denominator'
    );

Measure “Netherlands Year of arrival 1971-1980” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.5. Netherlands Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1981_1990'
    );

Measure “Netherlands Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1981_1990'
    );

Measure “Netherlands Year of arrival 1981-1990” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1981_1990',
      'denominator'
    );

Measure “Netherlands Year of arrival 1981-1990” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.6. Netherlands Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1991_2000'
    );

Measure “Netherlands Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1991_2000'
    );

Measure “Netherlands Year of arrival 1991-2000” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_1991_2000',
      'denominator'
    );

Measure “Netherlands Year of arrival 1991-2000” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.7. Netherlands Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2001_2005'
    );

Measure “Netherlands Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2001_2005'
    );

Measure “Netherlands Year of arrival 2001-2005” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2001_2005',
      'denominator'
    );

Measure “Netherlands Year of arrival 2001-2005” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.8. Netherlands Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2006'
    );

Measure “Netherlands Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2006'
    );

Measure “Netherlands Year of arrival 2006” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2006',
      'denominator'
    );

Measure “Netherlands Year of arrival 2006” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.9. Netherlands Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2007'
    );

Measure “Netherlands Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2007'
    );

Measure “Netherlands Year of arrival 2007” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2007',
      'denominator'
    );

Measure “Netherlands Year of arrival 2007” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.10. Netherlands Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2008'
    );

Measure “Netherlands Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2008'
    );

Measure “Netherlands Year of arrival 2008” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2008',
      'denominator'
    );

Measure “Netherlands Year of arrival 2008” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.11. Netherlands Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2009'
    );

Measure “Netherlands Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2009'
    );

Measure “Netherlands Year of arrival 2009” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2009',
      'denominator'
    );

Measure “Netherlands Year of arrival 2009” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.12. Netherlands Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2010'
    );

Measure “Netherlands Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2010'
    );

Measure “Netherlands Year of arrival 2010” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2010',
      'denominator'
    );

Measure “Netherlands Year of arrival 2010” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.13. Netherlands Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2011'
    );

Measure “Netherlands Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2011'
    );

Measure “Netherlands Year of arrival 2011” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_2011',
      'denominator'
    );

Measure “Netherlands Year of arrival 2011” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.14. Netherlands Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_Before_1941'
    );

Measure “Netherlands Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_Before_1941'
    );

Measure “Netherlands Year of arrival Before 1941” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_Before_1941',
      'denominator'
    );

Measure “Netherlands Year of arrival Before 1941” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.23.15. Netherlands Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Netherlands Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_Yr_arrival_ns'
    );

Measure “Netherlands Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_Yr_arrival_ns'
    );

Measure “Netherlands Year of arrival not stated” percent of “Netherlands Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Netherlands_Yr_arrival_ns',
      'denominator'
    );

Measure “Netherlands Year of arrival not stated” percent of “Netherlands Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Netherlands_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Netherlands Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24. New Zealand TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_Tot'
    );

Measure “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_Tot'
    );

Measure “New Zealand Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_Tot',
      'denominator'
    );

Measure “New Zealand Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.1. New Zealand Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1941_1950'
    );

Measure “New Zealand Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1941_1950'
    );

Measure “New Zealand Year of arrival 1941-1950” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1941_1950',
      'denominator'
    );

Measure “New Zealand Year of arrival 1941-1950” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.2. New Zealand Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1951_1960'
    );

Measure “New Zealand Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1951_1960'
    );

Measure “New Zealand Year of arrival 1951-1960” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1951_1960',
      'denominator'
    );

Measure “New Zealand Year of arrival 1951-1960” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.3. New Zealand Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1961_1970'
    );

Measure “New Zealand Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1961_1970'
    );

Measure “New Zealand Year of arrival 1961-1970” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1961_1970',
      'denominator'
    );

Measure “New Zealand Year of arrival 1961-1970” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.4. New Zealand Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1971_1980'
    );

Measure “New Zealand Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1971_1980'
    );

Measure “New Zealand Year of arrival 1971-1980” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1971_1980',
      'denominator'
    );

Measure “New Zealand Year of arrival 1971-1980” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.5. New Zealand Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1981_1990'
    );

Measure “New Zealand Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1981_1990'
    );

Measure “New Zealand Year of arrival 1981-1990” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1981_1990',
      'denominator'
    );

Measure “New Zealand Year of arrival 1981-1990” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.6. New Zealand Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1991_2000'
    );

Measure “New Zealand Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1991_2000'
    );

Measure “New Zealand Year of arrival 1991-2000” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_1991_2000',
      'denominator'
    );

Measure “New Zealand Year of arrival 1991-2000” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.7. New Zealand Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2001_2005'
    );

Measure “New Zealand Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2001_2005'
    );

Measure “New Zealand Year of arrival 2001-2005” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2001_2005',
      'denominator'
    );

Measure “New Zealand Year of arrival 2001-2005” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.8. New Zealand Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2006'
    );

Measure “New Zealand Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2006'
    );

Measure “New Zealand Year of arrival 2006” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2006',
      'denominator'
    );

Measure “New Zealand Year of arrival 2006” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.9. New Zealand Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2007'
    );

Measure “New Zealand Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2007'
    );

Measure “New Zealand Year of arrival 2007” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2007',
      'denominator'
    );

Measure “New Zealand Year of arrival 2007” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.10. New Zealand Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2008'
    );

Measure “New Zealand Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2008'
    );

Measure “New Zealand Year of arrival 2008” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2008',
      'denominator'
    );

Measure “New Zealand Year of arrival 2008” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.11. New Zealand Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2009'
    );

Measure “New Zealand Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2009'
    );

Measure “New Zealand Year of arrival 2009” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2009',
      'denominator'
    );

Measure “New Zealand Year of arrival 2009” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.12. New Zealand Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2010'
    );

Measure “New Zealand Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2010'
    );

Measure “New Zealand Year of arrival 2010” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2010',
      'denominator'
    );

Measure “New Zealand Year of arrival 2010” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.13. New Zealand Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2011'
    );

Measure “New Zealand Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2011'
    );

Measure “New Zealand Year of arrival 2011” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_2011',
      'denominator'
    );

Measure “New Zealand Year of arrival 2011” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.14. New Zealand Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_Before_1941'
    );

Measure “New Zealand Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_Before_1941'
    );

Measure “New Zealand Year of arrival Before 1941” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_Before_1941',
      'denominator'
    );

Measure “New Zealand Year of arrival Before 1941” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.24.15. New Zealand Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “New Zealand Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_Yr_arrival_ns'
    );

Measure “New Zealand Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_Yr_arrival_ns'
    );

Measure “New Zealand Year of arrival not stated” percent of “New Zealand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_New_Zealand_Yr_arrival_ns',
      'denominator'
    );

Measure “New Zealand Year of arrival not stated” percent of “New Zealand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_New_Zealand_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:New Zealand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25. Philippines TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_Tot'
    );

Measure “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_Tot'
    );

Measure “Philippines Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_Tot',
      'denominator'
    );

Measure “Philippines Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.1. Philippines Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1941_1950'
    );

Measure “Philippines Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1941_1950'
    );

Measure “Philippines Year of arrival 1941-1950” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1941_1950',
      'denominator'
    );

Measure “Philippines Year of arrival 1941-1950” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.2. Philippines Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1951_1960'
    );

Measure “Philippines Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1951_1960'
    );

Measure “Philippines Year of arrival 1951-1960” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1951_1960',
      'denominator'
    );

Measure “Philippines Year of arrival 1951-1960” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.3. Philippines Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1961_1970'
    );

Measure “Philippines Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1961_1970'
    );

Measure “Philippines Year of arrival 1961-1970” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1961_1970',
      'denominator'
    );

Measure “Philippines Year of arrival 1961-1970” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.4. Philippines Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1971_1980'
    );

Measure “Philippines Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1971_1980'
    );

Measure “Philippines Year of arrival 1971-1980” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1971_1980',
      'denominator'
    );

Measure “Philippines Year of arrival 1971-1980” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.5. Philippines Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1981_1990'
    );

Measure “Philippines Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1981_1990'
    );

Measure “Philippines Year of arrival 1981-1990” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1981_1990',
      'denominator'
    );

Measure “Philippines Year of arrival 1981-1990” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.6. Philippines Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1991_2000'
    );

Measure “Philippines Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1991_2000'
    );

Measure “Philippines Year of arrival 1991-2000” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_1991_2000',
      'denominator'
    );

Measure “Philippines Year of arrival 1991-2000” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.7. Philippines Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2001_2005'
    );

Measure “Philippines Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2001_2005'
    );

Measure “Philippines Year of arrival 2001-2005” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2001_2005',
      'denominator'
    );

Measure “Philippines Year of arrival 2001-2005” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.8. Philippines Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2006'
    );

Measure “Philippines Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2006'
    );

Measure “Philippines Year of arrival 2006” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2006',
      'denominator'
    );

Measure “Philippines Year of arrival 2006” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.9. Philippines Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2007'
    );

Measure “Philippines Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2007'
    );

Measure “Philippines Year of arrival 2007” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2007',
      'denominator'
    );

Measure “Philippines Year of arrival 2007” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.10. Philippines Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2008'
    );

Measure “Philippines Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2008'
    );

Measure “Philippines Year of arrival 2008” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2008',
      'denominator'
    );

Measure “Philippines Year of arrival 2008” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.11. Philippines Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2009'
    );

Measure “Philippines Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2009'
    );

Measure “Philippines Year of arrival 2009” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2009',
      'denominator'
    );

Measure “Philippines Year of arrival 2009” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.12. Philippines Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2010'
    );

Measure “Philippines Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2010'
    );

Measure “Philippines Year of arrival 2010” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2010',
      'denominator'
    );

Measure “Philippines Year of arrival 2010” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.13. Philippines Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2011'
    );

Measure “Philippines Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2011'
    );

Measure “Philippines Year of arrival 2011” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_2011',
      'denominator'
    );

Measure “Philippines Year of arrival 2011” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.14. Philippines Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_Before_1941'
    );

Measure “Philippines Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_Before_1941'
    );

Measure “Philippines Year of arrival Before 1941” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_Before_1941',
      'denominator'
    );

Measure “Philippines Year of arrival Before 1941” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.25.15. Philippines Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Philippines Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_Yr_arrival_ns'
    );

Measure “Philippines Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_Yr_arrival_ns'
    );

Measure “Philippines Year of arrival not stated” percent of “Philippines Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Philippines_Yr_arrival_ns',
      'denominator'
    );

Measure “Philippines Year of arrival not stated” percent of “Philippines Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Philippines_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Philippines Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26. Poland TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_Tot'
    );

Measure “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_Tot'
    );

Measure “Poland Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_Tot',
      'denominator'
    );

Measure “Poland Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.1. Poland Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1941_1950'
    );

Measure “Poland Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1941_1950'
    );

Measure “Poland Year of arrival 1941-1950” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1941_1950',
      'denominator'
    );

Measure “Poland Year of arrival 1941-1950” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.2. Poland Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1951_1960'
    );

Measure “Poland Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1951_1960'
    );

Measure “Poland Year of arrival 1951-1960” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1951_1960',
      'denominator'
    );

Measure “Poland Year of arrival 1951-1960” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.3. Poland Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1961_1970'
    );

Measure “Poland Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1961_1970'
    );

Measure “Poland Year of arrival 1961-1970” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1961_1970',
      'denominator'
    );

Measure “Poland Year of arrival 1961-1970” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.4. Poland Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1971_1980'
    );

Measure “Poland Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1971_1980'
    );

Measure “Poland Year of arrival 1971-1980” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1971_1980',
      'denominator'
    );

Measure “Poland Year of arrival 1971-1980” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.5. Poland Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1981_1990'
    );

Measure “Poland Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1981_1990'
    );

Measure “Poland Year of arrival 1981-1990” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1981_1990',
      'denominator'
    );

Measure “Poland Year of arrival 1981-1990” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.6. Poland Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1991_2000'
    );

Measure “Poland Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1991_2000'
    );

Measure “Poland Year of arrival 1991-2000” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_1991_2000',
      'denominator'
    );

Measure “Poland Year of arrival 1991-2000” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.7. Poland Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2001_2005'
    );

Measure “Poland Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2001_2005'
    );

Measure “Poland Year of arrival 2001-2005” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2001_2005',
      'denominator'
    );

Measure “Poland Year of arrival 2001-2005” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.8. Poland Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2006'
    );

Measure “Poland Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2006'
    );

Measure “Poland Year of arrival 2006” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2006',
      'denominator'
    );

Measure “Poland Year of arrival 2006” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.9. Poland Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2007'
    );

Measure “Poland Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2007'
    );

Measure “Poland Year of arrival 2007” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2007',
      'denominator'
    );

Measure “Poland Year of arrival 2007” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.10. Poland Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2008'
    );

Measure “Poland Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2008'
    );

Measure “Poland Year of arrival 2008” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2008',
      'denominator'
    );

Measure “Poland Year of arrival 2008” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.11. Poland Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2009'
    );

Measure “Poland Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2009'
    );

Measure “Poland Year of arrival 2009” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2009',
      'denominator'
    );

Measure “Poland Year of arrival 2009” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.12. Poland Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2010'
    );

Measure “Poland Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2010'
    );

Measure “Poland Year of arrival 2010” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2010',
      'denominator'
    );

Measure “Poland Year of arrival 2010” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.13. Poland Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2011'
    );

Measure “Poland Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2011'
    );

Measure “Poland Year of arrival 2011” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_2011',
      'denominator'
    );

Measure “Poland Year of arrival 2011” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.14. Poland Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_Before_1941'
    );

Measure “Poland Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_Before_1941'
    );

Measure “Poland Year of arrival Before 1941” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_Before_1941',
      'denominator'
    );

Measure “Poland Year of arrival Before 1941” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.26.15. Poland Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Poland Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_Yr_arrival_NS'
    );

Measure “Poland Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_Yr_arrival_NS'
    );

Measure “Poland Year of arrival not stated” percent of “Poland Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10B_Poland_Yr_arrival_NS',
      'denominator'
    );

Measure “Poland Year of arrival not stated” percent of “Poland Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10B_Poland_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Section of State Ranges

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Poland Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27. Singapore TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_Tot'
    );

Measure “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_Tot'
    );

Measure “Singapore Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_Tot',
      'denominator'
    );

Measure “Singapore Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.1. Singapore Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1941_1950'
    );

Measure “Singapore Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1941_1950'
    );

Measure “Singapore Year of arrival 1941-1950” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1941_1950',
      'denominator'
    );

Measure “Singapore Year of arrival 1941-1950” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.2. Singapore Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1951_1960'
    );

Measure “Singapore Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1951_1960'
    );

Measure “Singapore Year of arrival 1951-1960” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1951_1960',
      'denominator'
    );

Measure “Singapore Year of arrival 1951-1960” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.3. Singapore Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1961_1970'
    );

Measure “Singapore Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1961_1970'
    );

Measure “Singapore Year of arrival 1961-1970” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1961_1970',
      'denominator'
    );

Measure “Singapore Year of arrival 1961-1970” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.4. Singapore Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1971_1980'
    );

Measure “Singapore Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1971_1980'
    );

Measure “Singapore Year of arrival 1971-1980” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1971_1980',
      'denominator'
    );

Measure “Singapore Year of arrival 1971-1980” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.5. Singapore Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1981_1990'
    );

Measure “Singapore Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1981_1990'
    );

Measure “Singapore Year of arrival 1981-1990” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1981_1990',
      'denominator'
    );

Measure “Singapore Year of arrival 1981-1990” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.6. Singapore Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1991_2000'
    );

Measure “Singapore Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1991_2000'
    );

Measure “Singapore Year of arrival 1991-2000” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_1991_2000',
      'denominator'
    );

Measure “Singapore Year of arrival 1991-2000” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.7. Singapore Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2001_2005'
    );

Measure “Singapore Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2001_2005'
    );

Measure “Singapore Year of arrival 2001-2005” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2001_2005',
      'denominator'
    );

Measure “Singapore Year of arrival 2001-2005” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.8. Singapore Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2006'
    );

Measure “Singapore Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2006'
    );

Measure “Singapore Year of arrival 2006” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2006',
      'denominator'
    );

Measure “Singapore Year of arrival 2006” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.9. Singapore Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2007'
    );

Measure “Singapore Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2007'
    );

Measure “Singapore Year of arrival 2007” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2007',
      'denominator'
    );

Measure “Singapore Year of arrival 2007” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.10. Singapore Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2008'
    );

Measure “Singapore Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2008'
    );

Measure “Singapore Year of arrival 2008” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2008',
      'denominator'
    );

Measure “Singapore Year of arrival 2008” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.11. Singapore Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2009'
    );

Measure “Singapore Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2009'
    );

Measure “Singapore Year of arrival 2009” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2009',
      'denominator'
    );

Measure “Singapore Year of arrival 2009” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.12. Singapore Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2010'
    );

Measure “Singapore Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2010'
    );

Measure “Singapore Year of arrival 2010” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2010',
      'denominator'
    );

Measure “Singapore Year of arrival 2010” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.13. Singapore Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2011'
    );

Measure “Singapore Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2011'
    );

Measure “Singapore Year of arrival 2011” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_2011',
      'denominator'
    );

Measure “Singapore Year of arrival 2011” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.14. Singapore Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_Before_1941'
    );

Measure “Singapore Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_Before_1941'
    );

Measure “Singapore Year of arrival Before 1941” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_Before_1941',
      'denominator'
    );

Measure “Singapore Year of arrival Before 1941” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.27.15. Singapore Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Singapore Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_Yr_arrival_ns'
    );

Measure “Singapore Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_Yr_arrival_ns'
    );

Measure “Singapore Year of arrival not stated” percent of “Singapore Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Singapore_Yr_arrival_ns',
      'denominator'
    );

Measure “Singapore Year of arrival not stated” percent of “Singapore Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Singapore_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Singapore Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28. South Africa TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_Tot'
    );

Measure “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_Tot'
    );

Measure “South Africa Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_Tot',
      'denominator'
    );

Measure “South Africa Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.1. South Africa Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1941_1950'
    );

Measure “South Africa Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1941_1950'
    );

Measure “South Africa Year of arrival 1941-1950” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1941_1950',
      'denominator'
    );

Measure “South Africa Year of arrival 1941-1950” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.2. South Africa Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1951_1960'
    );

Measure “South Africa Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1951_1960'
    );

Measure “South Africa Year of arrival 1951-1960” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1951_1960',
      'denominator'
    );

Measure “South Africa Year of arrival 1951-1960” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.3. South Africa Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1961_1970'
    );

Measure “South Africa Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1961_1970'
    );

Measure “South Africa Year of arrival 1961-1970” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1961_1970',
      'denominator'
    );

Measure “South Africa Year of arrival 1961-1970” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.4. South Africa Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1971_1980'
    );

Measure “South Africa Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1971_1980'
    );

Measure “South Africa Year of arrival 1971-1980” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1971_1980',
      'denominator'
    );

Measure “South Africa Year of arrival 1971-1980” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.5. South Africa Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1981_1990'
    );

Measure “South Africa Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1981_1990'
    );

Measure “South Africa Year of arrival 1981-1990” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1981_1990',
      'denominator'
    );

Measure “South Africa Year of arrival 1981-1990” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.6. South Africa Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1991_2000'
    );

Measure “South Africa Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1991_2000'
    );

Measure “South Africa Year of arrival 1991-2000” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_1991_2000',
      'denominator'
    );

Measure “South Africa Year of arrival 1991-2000” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.7. South Africa Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2001_2005'
    );

Measure “South Africa Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2001_2005'
    );

Measure “South Africa Year of arrival 2001-2005” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2001_2005',
      'denominator'
    );

Measure “South Africa Year of arrival 2001-2005” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.8. South Africa Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2006'
    );

Measure “South Africa Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2006'
    );

Measure “South Africa Year of arrival 2006” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2006',
      'denominator'
    );

Measure “South Africa Year of arrival 2006” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.9. South Africa Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2007'
    );

Measure “South Africa Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2007'
    );

Measure “South Africa Year of arrival 2007” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2007',
      'denominator'
    );

Measure “South Africa Year of arrival 2007” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.10. South Africa Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2008'
    );

Measure “South Africa Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2008'
    );

Measure “South Africa Year of arrival 2008” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2008',
      'denominator'
    );

Measure “South Africa Year of arrival 2008” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.11. South Africa Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2009'
    );

Measure “South Africa Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2009'
    );

Measure “South Africa Year of arrival 2009” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2009',
      'denominator'
    );

Measure “South Africa Year of arrival 2009” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.12. South Africa Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2010'
    );

Measure “South Africa Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2010'
    );

Measure “South Africa Year of arrival 2010” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2010',
      'denominator'
    );

Measure “South Africa Year of arrival 2010” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.13. South Africa Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2011'
    );

Measure “South Africa Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2011'
    );

Measure “South Africa Year of arrival 2011” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_2011',
      'denominator'
    );

Measure “South Africa Year of arrival 2011” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.14. South Africa Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_Before_1941'
    );

Measure “South Africa Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_Before_1941'
    );

Measure “South Africa Year of arrival Before 1941” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_Before_1941',
      'denominator'
    );

Measure “South Africa Year of arrival Before 1941” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.28.15. South Africa Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Africa Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_Yr_arrival_ns'
    );

Measure “South Africa Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_Yr_arrival_ns'
    );

Measure “South Africa Year of arrival not stated” percent of “South Africa Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Africa_Yr_arrival_ns',
      'denominator'
    );

Measure “South Africa Year of arrival not stated” percent of “South Africa Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Africa_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Africa Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29. South Eastern Europe nfd TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_Total'
    );

Measure “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_Total'
    );

Measure “South Eastern Europe nfd Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_Total',
      'denominator'
    );

Measure “South Eastern Europe nfd Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.1. South Eastern Europe nfd Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1941_1950'
    );

Measure “South Eastern Europe nfd Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1941_1950'
    );

Measure “South Eastern Europe nfd Year of arrival 1941-1950” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1941_1950',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 1941-1950” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.2. South Eastern Europe nfd Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1951_1960'
    );

Measure “South Eastern Europe nfd Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1951_1960'
    );

Measure “South Eastern Europe nfd Year of arrival 1951-1960” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1951_1960',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 1951-1960” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.3. South Eastern Europe nfd Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1961_1970'
    );

Measure “South Eastern Europe nfd Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1961_1970'
    );

Measure “South Eastern Europe nfd Year of arrival 1961-1970” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1961_1970',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 1961-1970” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.4. South Eastern Europe nfd Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1971_1980'
    );

Measure “South Eastern Europe nfd Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1971_1980'
    );

Measure “South Eastern Europe nfd Year of arrival 1971-1980” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1971_1980',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 1971-1980” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.5. South Eastern Europe nfd Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1981_1990'
    );

Measure “South Eastern Europe nfd Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1981_1990'
    );

Measure “South Eastern Europe nfd Year of arrival 1981-1990” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1981_1990',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 1981-1990” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.6. South Eastern Europe nfd Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1991_2000'
    );

Measure “South Eastern Europe nfd Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1991_2000'
    );

Measure “South Eastern Europe nfd Year of arrival 1991-2000” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_1991_2000',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 1991-2000” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.7. South Eastern Europe nfd Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_2001_2005'
    );

Measure “South Eastern Europe nfd Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_2001_2005'
    );

Measure “South Eastern Europe nfd Year of arrival 2001-2005” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_2001_2005',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 2001-2005” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.8. South Eastern Europe nfd Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2006'
    );

Measure “South Eastern Europe nfd Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2006'
    );

Measure “South Eastern Europe nfd Year of arrival 2006” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2006',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 2006” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.9. South Eastern Europe nfd Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2007'
    );

Measure “South Eastern Europe nfd Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2007'
    );

Measure “South Eastern Europe nfd Year of arrival 2007” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2007',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 2007” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.10. South Eastern Europe nfd Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2008'
    );

Measure “South Eastern Europe nfd Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2008'
    );

Measure “South Eastern Europe nfd Year of arrival 2008” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2008',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 2008” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.11. South Eastern Europe nfd Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2009'
    );

Measure “South Eastern Europe nfd Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2009'
    );

Measure “South Eastern Europe nfd Year of arrival 2009” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2009',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 2009” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.12. South Eastern Europe nfd Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2010'
    );

Measure “South Eastern Europe nfd Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2010'
    );

Measure “South Eastern Europe nfd Year of arrival 2010” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2010',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 2010” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.13. South Eastern Europe nfd Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2011'
    );

Measure “South Eastern Europe nfd Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2011'
    );

Measure “South Eastern Europe nfd Year of arrival 2011” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_South_Eastern_Europe_nfd_2011',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival 2011” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_South_Eastern_Europe_nfd_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.14. South Eastern Europe nfd Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_Before_1941'
    );

Measure “South Eastern Europe nfd Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_Before_1941'
    );

Measure “South Eastern Europe nfd Year of arrival Before 1941” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_Before_1941',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival Before 1941” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.29.15. South Eastern Europe nfd Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “South Eastern Europe nfd Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_arrival_ns'
    );

Measure “South Eastern Europe nfd Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_arrival_ns'
    );

Measure “South Eastern Europe nfd Year of arrival not stated” percent of “South Eastern Europe nfd Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_SE_Europe_nfd_arrival_ns',
      'denominator'
    );

Measure “South Eastern Europe nfd Year of arrival not stated” percent of “South Eastern Europe nfd Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_SE_Europe_nfd_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:South Eastern Europe nfd Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30. Sri Lanka TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_Tot'
    );

Measure “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_Tot'
    );

Measure “Sri Lanka Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_Tot',
      'denominator'
    );

Measure “Sri Lanka Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.1. Sri Lanka Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1941_1950'
    );

Measure “Sri Lanka Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1941_1950'
    );

Measure “Sri Lanka Year of arrival 1941-1950” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1941_1950',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 1941-1950” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.2. Sri Lanka Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1951_1960'
    );

Measure “Sri Lanka Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1951_1960'
    );

Measure “Sri Lanka Year of arrival 1951-1960” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1951_1960',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 1951-1960” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.3. Sri Lanka Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1961_1970'
    );

Measure “Sri Lanka Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1961_1970'
    );

Measure “Sri Lanka Year of arrival 1961-1970” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1961_1970',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 1961-1970” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.4. Sri Lanka Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1971_1980'
    );

Measure “Sri Lanka Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1971_1980'
    );

Measure “Sri Lanka Year of arrival 1971-1980” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1971_1980',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 1971-1980” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.5. Sri Lanka Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1981_1990'
    );

Measure “Sri Lanka Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1981_1990'
    );

Measure “Sri Lanka Year of arrival 1981-1990” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1981_1990',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 1981-1990” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.6. Sri Lanka Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1991_2000'
    );

Measure “Sri Lanka Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1991_2000'
    );

Measure “Sri Lanka Year of arrival 1991-2000” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_1991_2000',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 1991-2000” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.7. Sri Lanka Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2001_2005'
    );

Measure “Sri Lanka Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2001_2005'
    );

Measure “Sri Lanka Year of arrival 2001-2005” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2001_2005',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 2001-2005” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.8. Sri Lanka Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2006'
    );

Measure “Sri Lanka Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2006'
    );

Measure “Sri Lanka Year of arrival 2006” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2006',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 2006” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.9. Sri Lanka Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2007'
    );

Measure “Sri Lanka Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2007'
    );

Measure “Sri Lanka Year of arrival 2007” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2007',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 2007” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.10. Sri Lanka Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2008'
    );

Measure “Sri Lanka Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2008'
    );

Measure “Sri Lanka Year of arrival 2008” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2008',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 2008” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.11. Sri Lanka Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2009'
    );

Measure “Sri Lanka Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2009'
    );

Measure “Sri Lanka Year of arrival 2009” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2009',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 2009” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.12. Sri Lanka Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2010'
    );

Measure “Sri Lanka Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2010'
    );

Measure “Sri Lanka Year of arrival 2010” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2010',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 2010” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.13. Sri Lanka Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2011'
    );

Measure “Sri Lanka Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2011'
    );

Measure “Sri Lanka Year of arrival 2011” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_2011',
      'denominator'
    );

Measure “Sri Lanka Year of arrival 2011” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.14. Sri Lanka Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_Before_1941'
    );

Measure “Sri Lanka Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_Before_1941'
    );

Measure “Sri Lanka Year of arrival Before 1941” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_Before_1941',
      'denominator'
    );

Measure “Sri Lanka Year of arrival Before 1941” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.30.15. Sri Lanka Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Sri Lanka Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_Yr_arrival_ns'
    );

Measure “Sri Lanka Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_Yr_arrival_ns'
    );

Measure “Sri Lanka Year of arrival not stated” percent of “Sri Lanka Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Sri_Lanka_Yr_arrival_ns',
      'denominator'
    );

Measure “Sri Lanka Year of arrival not stated” percent of “Sri Lanka Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Sri_Lanka_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Sri Lanka Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31. Thailand TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_Tot'
    );

Measure “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_Tot'
    );

Measure “Thailand Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_Tot',
      'denominator'
    );

Measure “Thailand Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.1. Thailand Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1941_1950'
    );

Measure “Thailand Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1941_1950'
    );

Measure “Thailand Year of arrival 1941-1950” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1941_1950',
      'denominator'
    );

Measure “Thailand Year of arrival 1941-1950” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.2. Thailand Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1951_1960'
    );

Measure “Thailand Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1951_1960'
    );

Measure “Thailand Year of arrival 1951-1960” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1951_1960',
      'denominator'
    );

Measure “Thailand Year of arrival 1951-1960” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.3. Thailand Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1961_1970'
    );

Measure “Thailand Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1961_1970'
    );

Measure “Thailand Year of arrival 1961-1970” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1961_1970',
      'denominator'
    );

Measure “Thailand Year of arrival 1961-1970” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.4. Thailand Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1971_1980'
    );

Measure “Thailand Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1971_1980'
    );

Measure “Thailand Year of arrival 1971-1980” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1971_1980',
      'denominator'
    );

Measure “Thailand Year of arrival 1971-1980” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.5. Thailand Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1981_1990'
    );

Measure “Thailand Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1981_1990'
    );

Measure “Thailand Year of arrival 1981-1990” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1981_1990',
      'denominator'
    );

Measure “Thailand Year of arrival 1981-1990” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.6. Thailand Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1991_2000'
    );

Measure “Thailand Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1991_2000'
    );

Measure “Thailand Year of arrival 1991-2000” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_1991_2000',
      'denominator'
    );

Measure “Thailand Year of arrival 1991-2000” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.7. Thailand Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2001_2005'
    );

Measure “Thailand Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2001_2005'
    );

Measure “Thailand Year of arrival 2001-2005” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2001_2005',
      'denominator'
    );

Measure “Thailand Year of arrival 2001-2005” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.8. Thailand Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2006'
    );

Measure “Thailand Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2006'
    );

Measure “Thailand Year of arrival 2006” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2006',
      'denominator'
    );

Measure “Thailand Year of arrival 2006” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.9. Thailand Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2007'
    );

Measure “Thailand Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2007'
    );

Measure “Thailand Year of arrival 2007” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2007',
      'denominator'
    );

Measure “Thailand Year of arrival 2007” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.10. Thailand Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2008'
    );

Measure “Thailand Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2008'
    );

Measure “Thailand Year of arrival 2008” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2008',
      'denominator'
    );

Measure “Thailand Year of arrival 2008” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.11. Thailand Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2009'
    );

Measure “Thailand Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2009'
    );

Measure “Thailand Year of arrival 2009” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2009',
      'denominator'
    );

Measure “Thailand Year of arrival 2009” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.12. Thailand Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2010'
    );

Measure “Thailand Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2010'
    );

Measure “Thailand Year of arrival 2010” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2010',
      'denominator'
    );

Measure “Thailand Year of arrival 2010” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.13. Thailand Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2011'
    );

Measure “Thailand Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2011'
    );

Measure “Thailand Year of arrival 2011” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_2011',
      'denominator'
    );

Measure “Thailand Year of arrival 2011” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.14. Thailand Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_Before_1941'
    );

Measure “Thailand Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_Before_1941'
    );

Measure “Thailand Year of arrival Before 1941” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_Before_1941',
      'denominator'
    );

Measure “Thailand Year of arrival Before 1941” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.31.15. Thailand Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Thailand Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_Yr_arrival_ns'
    );

Measure “Thailand Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_Yr_arrival_ns'
    );

Measure “Thailand Year of arrival not stated” percent of “Thailand Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Thailand_Yr_arrival_ns',
      'denominator'
    );

Measure “Thailand Year of arrival not stated” percent of “Thailand Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Thailand_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Thailand Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32. Turkey TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_Tot'
    );

Measure “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_Tot'
    );

Measure “Turkey Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_Tot',
      'denominator'
    );

Measure “Turkey Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.1. Turkey Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1941_1950'
    );

Measure “Turkey Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1941_1950'
    );

Measure “Turkey Year of arrival 1941-1950” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1941_1950',
      'denominator'
    );

Measure “Turkey Year of arrival 1941-1950” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.2. Turkey Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1951_1960'
    );

Measure “Turkey Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1951_1960'
    );

Measure “Turkey Year of arrival 1951-1960” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1951_1960',
      'denominator'
    );

Measure “Turkey Year of arrival 1951-1960” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.3. Turkey Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1961_1970'
    );

Measure “Turkey Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1961_1970'
    );

Measure “Turkey Year of arrival 1961-1970” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1961_1970',
      'denominator'
    );

Measure “Turkey Year of arrival 1961-1970” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.4. Turkey Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1971_1980'
    );

Measure “Turkey Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1971_1980'
    );

Measure “Turkey Year of arrival 1971-1980” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1971_1980',
      'denominator'
    );

Measure “Turkey Year of arrival 1971-1980” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.5. Turkey Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1981_1990'
    );

Measure “Turkey Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1981_1990'
    );

Measure “Turkey Year of arrival 1981-1990” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1981_1990',
      'denominator'
    );

Measure “Turkey Year of arrival 1981-1990” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.6. Turkey Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1991_2000'
    );

Measure “Turkey Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1991_2000'
    );

Measure “Turkey Year of arrival 1991-2000” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_1991_2000',
      'denominator'
    );

Measure “Turkey Year of arrival 1991-2000” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.7. Turkey Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2001_2005'
    );

Measure “Turkey Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2001_2005'
    );

Measure “Turkey Year of arrival 2001-2005” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2001_2005',
      'denominator'
    );

Measure “Turkey Year of arrival 2001-2005” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.8. Turkey Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2006'
    );

Measure “Turkey Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2006'
    );

Measure “Turkey Year of arrival 2006” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2006',
      'denominator'
    );

Measure “Turkey Year of arrival 2006” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.9. Turkey Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2007'
    );

Measure “Turkey Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2007'
    );

Measure “Turkey Year of arrival 2007” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2007',
      'denominator'
    );

Measure “Turkey Year of arrival 2007” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.10. Turkey Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2008'
    );

Measure “Turkey Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2008'
    );

Measure “Turkey Year of arrival 2008” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2008',
      'denominator'
    );

Measure “Turkey Year of arrival 2008” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.11. Turkey Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2009'
    );

Measure “Turkey Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2009'
    );

Measure “Turkey Year of arrival 2009” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2009',
      'denominator'
    );

Measure “Turkey Year of arrival 2009” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.12. Turkey Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2010'
    );

Measure “Turkey Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2010'
    );

Measure “Turkey Year of arrival 2010” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2010',
      'denominator'
    );

Measure “Turkey Year of arrival 2010” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.13. Turkey Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2011'
    );

Measure “Turkey Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2011'
    );

Measure “Turkey Year of arrival 2011” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_2011',
      'denominator'
    );

Measure “Turkey Year of arrival 2011” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.14. Turkey Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_Before_1941'
    );

Measure “Turkey Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_Before_1941'
    );

Measure “Turkey Year of arrival Before 1941” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_Before_1941',
      'denominator'
    );

Measure “Turkey Year of arrival Before 1941” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.32.15. Turkey Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Turkey Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_Yr_arrival_ns'
    );

Measure “Turkey Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_Yr_arrival_ns'
    );

Measure “Turkey Year of arrival not stated” percent of “Turkey Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Turkey_Yr_arrival_ns',
      'denominator'
    );

Measure “Turkey Year of arrival not stated” percent of “Turkey Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Turkey_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Turkey Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33. United Kingdom Channel Islands and Isle of Man TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_Tot'
    );

Measure “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_Tot'
    );

Measure “United Kingdom Channel Islands and Isle of Man Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_Tot',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.1. United Kingdom Channel Islands and Isle of Man Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1941_1950'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1941_1950'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1941-1950” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1941_1950',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1941-1950” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.2. United Kingdom Channel Islands and Isle of Man Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1951_1960'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1951_1960'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1951-1960” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1951_1960',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1951-1960” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.3. United Kingdom Channel Islands and Isle of Man Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1961_1970'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1961_1970'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1961-1970” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1961_1970',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1961-1970” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.4. United Kingdom Channel Islands and Isle of Man Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1971_1980'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1971_1980'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1971-1980” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1971_1980',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1971-1980” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.5. United Kingdom Channel Islands and Isle of Man Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1981_1990'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1981_1990'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1981-1990” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1981_1990',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1981-1990” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.6. United Kingdom Channel Islands and Isle of Man Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1991_2000'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1991_2000'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1991-2000” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_1991_2000',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 1991-2000” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.7. United Kingdom Channel Islands and Isle of Man Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2001_2005'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2001_2005'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2001-2005” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2001_2005',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2001-2005” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.8. United Kingdom Channel Islands and Isle of Man Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2006'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2006'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2006” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2006',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2006” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.9. United Kingdom Channel Islands and Isle of Man Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2007'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2007'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2007” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2007',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2007” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.10. United Kingdom Channel Islands and Isle of Man Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2008'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2008'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2008” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2008',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2008” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.11. United Kingdom Channel Islands and Isle of Man Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2009'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2009'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2009” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2009',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2009” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.12. United Kingdom Channel Islands and Isle of Man Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2010'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2010'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2010” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2010',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2010” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.13. United Kingdom Channel Islands and Isle of Man Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2011'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2011'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2011” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_2011',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival 2011” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.14. United Kingdom Channel Islands and Isle of Man Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_Before_1941'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_Before_1941'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival Before 1941” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_Before_1941',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival Before 1941” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.33.15. United Kingdom Channel Islands and Isle of Man Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_Yr_arrival_ns'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_Yr_arrival_ns'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival not stated” percent of “United Kingdom Channel Islands and Isle of Man Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_Kingdom_Yr_arrival_ns',
      'denominator'
    );

Measure “United Kingdom Channel Islands and Isle of Man Year of arrival not stated” percent of “United Kingdom Channel Islands and Isle of Man Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_Kingdom_Yr_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United Kingdom Channel Islands and Isle of Man Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34. United States of America TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_Total'
    );

Measure “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_Total'
    );

Measure “United States of America Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_Total',
      'denominator'
    );

Measure “United States of America Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_Total',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.1. United States of America Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1941_1950'
    );

Measure “United States of America Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1941_1950'
    );

Measure “United States of America Year of arrival 1941-1950” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1941_1950',
      'denominator'
    );

Measure “United States of America Year of arrival 1941-1950” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.2. United States of America Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1951_1960'
    );

Measure “United States of America Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1951_1960'
    );

Measure “United States of America Year of arrival 1951-1960” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1951_1960',
      'denominator'
    );

Measure “United States of America Year of arrival 1951-1960” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.3. United States of America Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1961_1970'
    );

Measure “United States of America Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1961_1970'
    );

Measure “United States of America Year of arrival 1961-1970” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1961_1970',
      'denominator'
    );

Measure “United States of America Year of arrival 1961-1970” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.4. United States of America Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1971_1980'
    );

Measure “United States of America Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1971_1980'
    );

Measure “United States of America Year of arrival 1971-1980” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1971_1980',
      'denominator'
    );

Measure “United States of America Year of arrival 1971-1980” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.5. United States of America Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1981_1990'
    );

Measure “United States of America Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1981_1990'
    );

Measure “United States of America Year of arrival 1981-1990” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1981_1990',
      'denominator'
    );

Measure “United States of America Year of arrival 1981-1990” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.6. United States of America Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1991_2000'
    );

Measure “United States of America Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1991_2000'
    );

Measure “United States of America Year of arrival 1991-2000” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_1991_2000',
      'denominator'
    );

Measure “United States of America Year of arrival 1991-2000” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.7. United States of America Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_2001_2005'
    );

Measure “United States of America Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_2001_2005'
    );

Measure “United States of America Year of arrival 2001-2005” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_2001_2005',
      'denominator'
    );

Measure “United States of America Year of arrival 2001-2005” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.8. United States of America Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2006'
    );

Measure “United States of America Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2006'
    );

Measure “United States of America Year of arrival 2006” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2006',
      'denominator'
    );

Measure “United States of America Year of arrival 2006” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.9. United States of America Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2007'
    );

Measure “United States of America Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2007'
    );

Measure “United States of America Year of arrival 2007” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2007',
      'denominator'
    );

Measure “United States of America Year of arrival 2007” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.10. United States of America Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2008'
    );

Measure “United States of America Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2008'
    );

Measure “United States of America Year of arrival 2008” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2008',
      'denominator'
    );

Measure “United States of America Year of arrival 2008” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.11. United States of America Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2009'
    );

Measure “United States of America Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2009'
    );

Measure “United States of America Year of arrival 2009” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2009',
      'denominator'
    );

Measure “United States of America Year of arrival 2009” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.12. United States of America Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2010'
    );

Measure “United States of America Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2010'
    );

Measure “United States of America Year of arrival 2010” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2010',
      'denominator'
    );

Measure “United States of America Year of arrival 2010” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.13. United States of America Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2011'
    );

Measure “United States of America Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2011'
    );

Measure “United States of America Year of arrival 2011” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_United_States_America_2011',
      'denominator'
    );

Measure “United States of America Year of arrival 2011” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_United_States_America_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.14. United States of America Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_Before_1941'
    );

Measure “United States of America Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_Before_1941'
    );

Measure “United States of America Year of arrival Before 1941” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_Before_1941',
      'denominator'
    );

Measure “United States of America Year of arrival Before 1941” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.34.15. United States of America Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “United States of America Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_year_of_arrival_ns'
    );

Measure “United States of America Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_year_of_arrival_ns'
    );

Measure “United States of America Year of arrival not stated” percent of “United States of America Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_USA_year_of_arrival_ns',
      'denominator'
    );

Measure “United States of America Year of arrival not stated” percent of “United States of America Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_USA_year_of_arrival_ns',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:United States of America Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35. Vietnam TotalΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Total” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_Tot'
    );

Measure “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_Tot'
    );

Measure “Vietnam Total” percent of “Total Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_Tot',
      'denominator'
    );

Measure “Vietnam Total” percent of “Total Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_Tot',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.1. Vietnam Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1941_1950'
    );

Measure “Vietnam Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1941_1950'
    );

Measure “Vietnam Year of arrival 1941-1950” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1941_1950',
      'denominator'
    );

Measure “Vietnam Year of arrival 1941-1950” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.2. Vietnam Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1951_1960'
    );

Measure “Vietnam Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1951_1960'
    );

Measure “Vietnam Year of arrival 1951-1960” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1951_1960',
      'denominator'
    );

Measure “Vietnam Year of arrival 1951-1960” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.3. Vietnam Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1961_1970'
    );

Measure “Vietnam Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1961_1970'
    );

Measure “Vietnam Year of arrival 1961-1970” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1961_1970',
      'denominator'
    );

Measure “Vietnam Year of arrival 1961-1970” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.4. Vietnam Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1971_1980'
    );

Measure “Vietnam Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1971_1980'
    );

Measure “Vietnam Year of arrival 1971-1980” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1971_1980',
      'denominator'
    );

Measure “Vietnam Year of arrival 1971-1980” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.5. Vietnam Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1981_1990'
    );

Measure “Vietnam Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1981_1990'
    );

Measure “Vietnam Year of arrival 1981-1990” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1981_1990',
      'denominator'
    );

Measure “Vietnam Year of arrival 1981-1990” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.6. Vietnam Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1991_2000'
    );

Measure “Vietnam Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1991_2000'
    );

Measure “Vietnam Year of arrival 1991-2000” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_1991_2000',
      'denominator'
    );

Measure “Vietnam Year of arrival 1991-2000” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.7. Vietnam Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2001_2005'
    );

Measure “Vietnam Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2001_2005'
    );

Measure “Vietnam Year of arrival 2001-2005” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2001_2005',
      'denominator'
    );

Measure “Vietnam Year of arrival 2001-2005” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.8. Vietnam Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2006'
    );

Measure “Vietnam Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2006'
    );

Measure “Vietnam Year of arrival 2006” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2006',
      'denominator'
    );

Measure “Vietnam Year of arrival 2006” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.9. Vietnam Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2007'
    );

Measure “Vietnam Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2007'
    );

Measure “Vietnam Year of arrival 2007” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2007',
      'denominator'
    );

Measure “Vietnam Year of arrival 2007” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.10. Vietnam Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2008'
    );

Measure “Vietnam Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2008'
    );

Measure “Vietnam Year of arrival 2008” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2008',
      'denominator'
    );

Measure “Vietnam Year of arrival 2008” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.11. Vietnam Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2009'
    );

Measure “Vietnam Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2009'
    );

Measure “Vietnam Year of arrival 2009” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2009',
      'denominator'
    );

Measure “Vietnam Year of arrival 2009” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.12. Vietnam Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2010'
    );

Measure “Vietnam Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2010'
    );

Measure “Vietnam Year of arrival 2010” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2010',
      'denominator'
    );

Measure “Vietnam Year of arrival 2010” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.13. Vietnam Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2011'
    );

Measure “Vietnam Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2011'
    );

Measure “Vietnam Year of arrival 2011” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_2011',
      'denominator'
    );

Measure “Vietnam Year of arrival 2011” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.14. Vietnam Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_Before_1941'
    );

Measure “Vietnam Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_Before_1941'
    );

Measure “Vietnam Year of arrival Before 1941” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_Before_1941',
      'denominator'
    );

Measure “Vietnam Year of arrival Before 1941” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.3.35.15. Vietnam Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Vietnam Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_Yr_arrival_NS'
    );

Measure “Vietnam Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_Yr_arrival_NS'
    );

Measure “Vietnam Year of arrival not stated” percent of “Vietnam Total” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Vietnam_Yr_arrival_NS',
      'denominator'
    );

Measure “Vietnam Year of arrival not stated” percent of “Vietnam Total” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Vietnam_Yr_arrival_NS',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Vietnam Total
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4. Total Year of arrival not statedΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival not stated” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_Yr_arrival_NS'
    );

Measure “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_Yr_arrival_NS'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.1. Total Year of arrival 1941-1950ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 1941-1950” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1941_1950'
    );

Measure “Total Year of arrival 1941-1950” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1941_1950'
    );

Measure “Total Year of arrival 1941-1950” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1941_1950',
      'denominator'
    );

Measure “Total Year of arrival 1941-1950” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1941_1950',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.2. Total Year of arrival 1951-1960ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 1951-1960” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1951_1960'
    );

Measure “Total Year of arrival 1951-1960” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1951_1960'
    );

Measure “Total Year of arrival 1951-1960” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1951_1960',
      'denominator'
    );

Measure “Total Year of arrival 1951-1960” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1951_1960',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.3. Total Year of arrival 1961-1970ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 1961-1970” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1961_1970'
    );

Measure “Total Year of arrival 1961-1970” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1961_1970'
    );

Measure “Total Year of arrival 1961-1970” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1961_1970',
      'denominator'
    );

Measure “Total Year of arrival 1961-1970” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1961_1970',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.4. Total Year of arrival 1971-1980ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 1971-1980” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1971_1980'
    );

Measure “Total Year of arrival 1971-1980” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1971_1980'
    );

Measure “Total Year of arrival 1971-1980” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1971_1980',
      'denominator'
    );

Measure “Total Year of arrival 1971-1980” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1971_1980',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.5. Total Year of arrival 1981-1990ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 1981-1990” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1981_1990'
    );

Measure “Total Year of arrival 1981-1990” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1981_1990'
    );

Measure “Total Year of arrival 1981-1990” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1981_1990',
      'denominator'
    );

Measure “Total Year of arrival 1981-1990” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1981_1990',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.6. Total Year of arrival 1991-2000ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 1991-2000” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1991_2000'
    );

Measure “Total Year of arrival 1991-2000” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1991_2000'
    );

Measure “Total Year of arrival 1991-2000” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_1991_2000',
      'denominator'
    );

Measure “Total Year of arrival 1991-2000” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_1991_2000',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.7. Total Year of arrival 2001-2005ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 2001-2005” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2001_2005'
    );

Measure “Total Year of arrival 2001-2005” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2001_2005'
    );

Measure “Total Year of arrival 2001-2005” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2001_2005',
      'denominator'
    );

Measure “Total Year of arrival 2001-2005” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2001_2005',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.8. Total Year of arrival 2006ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 2006” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2006'
    );

Measure “Total Year of arrival 2006” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2006'
    );

Measure “Total Year of arrival 2006” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2006',
      'denominator'
    );

Measure “Total Year of arrival 2006” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2006',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.9. Total Year of arrival 2007ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 2007” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2007'
    );

Measure “Total Year of arrival 2007” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2007'
    );

Measure “Total Year of arrival 2007” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2007',
      'denominator'
    );

Measure “Total Year of arrival 2007” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2007',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.10. Total Year of arrival 2008ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 2008” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2008'
    );

Measure “Total Year of arrival 2008” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2008'
    );

Measure “Total Year of arrival 2008” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2008',
      'denominator'
    );

Measure “Total Year of arrival 2008” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2008',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.11. Total Year of arrival 2009ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 2009” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2009'
    );

Measure “Total Year of arrival 2009” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2009'
    );

Measure “Total Year of arrival 2009” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2009',
      'denominator'
    );

Measure “Total Year of arrival 2009” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2009',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.12. Total Year of arrival 2010ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 2010” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2010'
    );

Measure “Total Year of arrival 2010” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2010'
    );

Measure “Total Year of arrival 2010” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2010',
      'denominator'
    );

Measure “Total Year of arrival 2010” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2010',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.13. Total Year of arrival 2011ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival 2011” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2011'
    );

Measure “Total Year of arrival 2011” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2011'
    );

Measure “Total Year of arrival 2011” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_2011',
      'denominator'
    );

Measure “Total Year of arrival 2011” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_2011',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence

3.9.4.14. Total Year of arrival Before 1941ΒΆ

Country of Birth of Person by Year of Arrival in Australia

Measure “Total Year of arrival Before 1941” density per sq. kilometer for one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_Before_1941'
    );

Measure “Total Year of arrival Before 1941” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_Before_1941'
    );

Measure “Total Year of arrival Before 1941” percent of “Total Year of arrival not stated” at one point:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      CDB_LatLng(-33.8806, 151.2131),
      'au.data.B10C_Tot_Before_1941',
      'denominator'
    );

Measure “Total Year of arrival Before 1941” percent of “Total Year of arrival not stated” within an area:

UPDATE {table_name}
  SET {new_numeric_column} =
    OBS_GetMeasure(
      ST_Buffer(CDB_LatLng(-33.8806, 151.2131), 0.01),
      'au.data.B10C_Tot_Before_1941',
      'denominator'
    );
Boundary Time (default is latest)

Remoteness Areas

2011

Urban Centres and Localities

2011

Significant Urban Areas

2011

Denominator:Total Year of arrival not stated
Source:Australian Bureau of Statistics (ABS)
License:Creative Commons Attribution 2.5 Australia licence